From c622143e3944afd3baae20e213a43e929fe6b890 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Sat, 18 Nov 2017 17:54:50 -0500 Subject: [PATCH] Remove Node version check from deploy script --- travis/deploy.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/travis/deploy.sh b/travis/deploy.sh index 340087312..ab6116008 100644 --- a/travis/deploy.sh +++ b/travis/deploy.sh @@ -24,12 +24,6 @@ else SOURCE_TYPE="branch" fi -# For Node != 8, do nothing -if [ "$TRAVIS_NODE_VERSION" != "8" ]; then - echo -e "\e[36m\e[1mBuild triggered with Node v${TRAVIS_NODE_VERSION} - doing nothing." - exit 0 -fi - # Run the build npm run docs VERSIONED=false npm run webpack @@ -88,4 +82,3 @@ git config user.name "Travis CI" git config user.email "$COMMIT_AUTHOR_EMAIL" git commit -m "Webpack build for ${SOURCE_TYPE} ${SOURCE}: ${SHA}" || true git push $SSH_REPO $TARGET_BRANCH -