diff options
| author | Christian Moritz | 2017-06-29 20:49:29 +0200 |
|---|---|---|
| committer | Christian Moritz | 2017-06-30 00:55:34 +0200 |
| commit | 5e00c277ce45d6af497ec135faf54571c340e704 (patch) | |
| tree | e5df15af57aa7c1176a406027abf50344d13a82f /Library/Homebrew/language | |
| parent | 7910e4a5b4eabe77481ba29a13090367363285f8 (diff) | |
| download | brew-5e00c277ce45d6af497ec135faf54571c340e704.tar.bz2 | |
partly revert log verbose npm pack output commit
to fix issues with shwoing npm debug output even on non-verbose install runs.
Diffstat (limited to 'Library/Homebrew/language')
| -rw-r--r-- | Library/Homebrew/language/node.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Homebrew/language/node.rb b/Library/Homebrew/language/node.rb index 0d02a2ad0..eaadc54fc 100644 --- a/Library/Homebrew/language/node.rb +++ b/Library/Homebrew/language/node.rb @@ -10,9 +10,8 @@ module Language # fed to `npm install` only symlinks are created linking back to that # directory, consequently breaking that assumption. We require a tarball # because npm install creates a "real" installation when fed a tarball. - pack_cmd = "npm pack -ddd --ignore-scripts" - ohai pack_cmd - output = `#{pack_cmd}` + pack_cmd = "npm pack --ignore-scripts" + output = Utils.popen_read(pack_cmd) if !$CHILD_STATUS.exitstatus.zero? || output.lines.empty? raise "npm failed to pack #{Dir.pwd}" end |
