Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-nodejs
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-nodejs
Commits
2a0ad546
Commit
2a0ad546
authored
May 18, 2011
by
David Dollar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add script for downloading npm
parent
f67bd06d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
download_npm
support/download_npm
+15
-0
No files found.
support/download_npm
0 → 100755
View file @
2a0ad546
#!/bin/sh
VERSION
=
$1
if
[
"
$VERSION
"
==
""
]
;
then
echo
"usage: download_npm VERSION"
exit
1
fi
cd
vendor/npm
git clone https://github.com/isaacs/npm.git npm-
$VERSION
cd
npm-
$VERSION
git checkout v
$VERSION
git submodule init
git submodule update
rm
-rf
.git
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment