Skip to content
Snippets Groups Projects
Commit 44d42713 authored by Florian Angerer's avatar Florian Angerer
Browse files

Configure zip to not prompt for user input.

parent 5194868a
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ pkg.cache.insert <- function(pkg.cache.env, pkgname, lib) {
# to produce a TAR with relative paths, we need to change the working dir
prev.wd <- getwd()
setwd(lib)
if(zip(toPath, pkgname) != 0L) {
if(zip(toPath, pkgname, flags="-r9Xq") != 0L) {
log.message("could not compress package dir ", fromPath , " and store it to ", toPath, level=1)
return (FALSE)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment