Fix verbose tar command getting stuck

pull/117/head
Alex Brausewetter 2015-05-05 15:26:57 +00:00
rodzic a2db60bed8
commit d9235bff30
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -351,7 +351,11 @@ define(function(require, exports, module) {
// Untargz package
proc.spawn(TAR, {
args: ["-C", normalizePath(packagePath), "-zxvf", normalizePath(gzPath)]
args: [
(verbose ? "-v" : ""),
"-C", normalizePath(packagePath),
"-zxf", normalizePath(gzPath)
]
}, function(err, p){
if (err) return callback(err);