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
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.sh b/scripts/install.sh
index c5b5860fa..2faffa570 100755
--- a/scripts/install.sh
+++ b/scripts/install.sh
@@ -54,7 +54,7 @@ if [ $ret -ne 0 ]; then
fi
cd "$TMP" \
- && curl -s -L "$url" | $tar -xzf - \
+ && curl -s -L "$url" | gzip --decompress --stdout | $tar -xf - \
&& cd * \
&& (node_version=`$node --version 2>&1`
ret=$?