Skip to content
Snippets Groups Projects
Commit 4b72486b authored by Mick Jordan's avatar Mick Jordan
Browse files

install.cran.packages: fix global assign typo

parent f906c581
Branches
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ pkginstall: ${common} ${java8Downloads} {
timelimit : "6:00:00"
run : [
["mx", "build"]
["mx", "pkgtest", "--invert-pkgset", "--print-ok-installs", "--install-dependents-first", "--pkg-count", "1000"]
["mx", "pkgtest", "--invert-pkgset", "--ok-only", "--print-ok-installs", "--install-dependents-first", "--pkg-count", "1000"]
]
}
......
......@@ -655,8 +655,6 @@ parse.args <- function() {
run.tests <<- TRUE
} else if (a == "--testdir") {
testdir <<- get.argvalue()
} else if (a == "--pkg-list-installed") {
pkg.list.installed <<- T
} else if (a == "--print-ok-installs") {
print.ok.installs <<- T
} else if (a == "--list-versions") {
......@@ -682,7 +680,7 @@ parse.args <- function() {
stop("--pkg.pattern and --pkg.filelist are mutually exclusive")
}
if (is.na(pkg.pattern) && is.na(pkg.filelistfile)) {
pkg.pattern <- "^.*"
pkg.pattern <<- "^.*"
}
}
......@@ -761,7 +759,6 @@ testdir <- "test"
pkg.pattern <- NA
pkg.filelist <- character()
pkg.filelistfile <- NA
pkg.list.installed <- F
print.ok.installs <- F
use.installed.pkgs <- F
verbose <- F
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment