forked from aws/amazon-sagemaker-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.R
23 lines (22 loc) · 951 Bytes
/
util.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
library(IRdisplay)
# system2() wrapper for surfacing output in a notebook (since IRKernel is bad at it)
nbsystem2 <- function (command, args = character()) {
# We'll send the output to a temp file because console output doesn't get pulled through to notebook:
tmpfile <- tempfile()
# We want to stop() on failure of the command, not warn()! but preserve existing global settings:
warnlevel <- options("warn")$warn
result <- NULL
tryCatch({
options(warn=2)
result <- system2(command, args=args, stdout=tmpfile, stderr=tmpfile)
display(readLines(tmpfile))
}, error=function(cond) {
display(cond) # Nice to put an error output up top as well as at the bottom, for visibility
display(readLines(tmpfile))
stop("Error running system2 command - see logs above for details")
}, finally={
file.remove(tmpfile)
options(warn=warnlevel)
})
return(result)
}