summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/bin/travis_install.sh')
-rwxr-xr-xplugins/jetpack/bin/travis_install.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/jetpack/bin/travis_install.sh b/plugins/jetpack/bin/travis_install.sh
deleted file mode 100755
index 2662f8f3..00000000
--- a/plugins/jetpack/bin/travis_install.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-# See more about this script here
-# http://austinpray.com/ops/2015/09/20/change-travis-node-version.html
-
-# Define a node version.
-TRAVIS_NODE_VERSION="5"
-
-# Clear out whatever version of NVM Travis has.
-# Their version of NVM is probably old.
-rm -rf ~/.nvm
-# Grab NVM.
-git clone https://github.com/creationix/nvm.git ~/.nvm
-# Checkout the latest stable tag.
-(cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`)
-# Install the desired version of Node
-source ~/.nvm/nvm.sh
-nvm install $TRAVIS_NODE_VERSION