Skip to content

Commit

Permalink
Deprecated system_check and system_output
Browse files Browse the repository at this point in the history
  • Loading branch information
jimhester committed Oct 24, 2018
1 parent 7575090 commit e66f1fb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions R/system.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
system_check <- function(cmd, args = character(), env_vars = character(),
path = ".", quiet = FALSE, throw = TRUE,
...) {
.Deprecated("processx::run()", package = "devtools")

full <- paste(shQuote(cmd), " ", paste(args, collapse = " "), sep = "")

if (!quiet) {
Expand Down Expand Up @@ -94,6 +96,8 @@ system_output <- function(cmd, args = character(), env_vars = character(),
path = ".", quiet = FALSE, ...) {
full <- paste(shQuote(cmd), " ", paste(args, collapse = " "), sep = "")

.Deprecated("processx::run()", package = "devtools")

if (!quiet) {
message(wrap_command(full), "\n")
}
Expand Down

0 comments on commit e66f1fb

Please sign in to comment.