Skip to content

Instantly share code, notes, and snippets.

@hybrist
Created September 9, 2015 19:02
Show Gist options
  • Select an option

  • Save hybrist/f0ee42c09bde3e85723b to your computer and use it in GitHub Desktop.

Select an option

Save hybrist/f0ee42c09bde3e85723b to your computer and use it in GitHub Desktop.
node 4 recipe
VERSION=$1
PACKAGE_TAG=node-${VERSION}
curl -sSo ${PACKAGE_TAG}-linux-x64.tar.gz "https://nodejs.org/dist/${VERSION}/${PACKAGE_TAG}-linux-x64.tar.gz"
tar -xzf ${PACKAGE_TAG}-linux-x64.tar.gz
mv ${PACKAGE_TAG}-linux-x64 ${PACKAGE_TAG}
./${PACKAGE_TAG}/bin/node -v
rm ${PACKAGE_TAG}/README.md ${PACKAGE_TAG}/CHANGELOG.md ${PACKAGE_TAG}/LICENSE
tar -cvzf ${PACKAGE_TAG}.tar.gz ${PACKAGE_TAG}
curl --upload-file $PACKAGE_TAG.tar.gz http://config/package/$PACKAGE_TAG.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment