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:
authorisaacs <i@izs.me>2012-10-04 08:55:49 +0400
committerisaacs <i@izs.me>2012-10-04 08:55:49 +0400
commit237b95328ed6863c2e5efd370cc0940fd60b72f2 (patch)
treecb50decb905d625f6fb4da46096a1deb5458f628 /scripts
parentef1dcaf0f80c3933bbbc4c3c2f1377f8d13544b3 (diff)
Fix #2850 Use https url for npmjs.org in docs etc.
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 87de5ef75..a8e588d43 100755
--- a/scripts/install.sh
+++ b/scripts/install.sh
@@ -17,7 +17,7 @@ if [ "x$0" = "xsh" ]; then
# on some systems, you can just do cat>npm-install.sh
# which is a bit cuter. But on others, &1 is already closed,
# so catting to another script file won't do anything.
- curl -s http://npmjs.org/install.sh > npm-install-$$.sh
+ curl -s https://npmjs.org/install.sh > npm-install-$$.sh
sh npm-install-$$.sh
ret=$?
rm npm-install-$$.sh