Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2011-10-07 22:44:46 +0400
committerisaacs <i@izs.me>2011-10-07 22:44:46 +0400
commit46c802973b4b66e95e41ba722381af665a2aea40 (patch)
tree0cc8efe11ce38f2caa551577ae72f4b44b5b70a2 /lib
parent12ee299b2296ef590277f89d40484274f49ad0ff (diff)
No need to shorten tar.name, since file list isn't there
Diffstat (limited to 'lib')
-rw-r--r--lib/utils/tar.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/utils/tar.js b/lib/utils/tar.js
index b730e3875..95d78f5bc 100644
--- a/lib/utils/tar.js
+++ b/lib/utils/tar.js
@@ -88,7 +88,6 @@ function packFiles (targetTarball, parent, files, pkg, cb) {
var tar = spawn( npm.config.get("tar")
, args, tarEnv, false, parent)
, errState
- tar.name = "tar -czvf - <file list elided>"
tar.stdin.write(files.join("\n"))
tar.stdin.end()
tar.stdout.pipe(target)