summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/node/after_script.sh3
-rw-r--r--scripts/node/package-version.js6
2 files changed, 8 insertions, 1 deletions
diff --git a/scripts/node/after_script.sh b/scripts/node/after_script.sh
index c56b7af18d..849505e7aa 100755
--- a/scripts/node/after_script.sh
+++ b/scripts/node/after_script.sh
@@ -11,8 +11,9 @@ else
fi
COMMIT_MESSAGE=$(git show -s --format=%B $TRAVIS_COMMIT | tr -d '\n')
+PACKAGE_JSON_VERSION=$(node ./scripts/node/package-version.js)
-if test "${COMMIT_MESSAGE#*'[publish binary]'}" != "$COMMIT_MESSAGE"; then
+if [[ ${TRAVIS_TAG} == node-v${PACKAGE_JSON_VERSION} ]] || test "${COMMIT_MESSAGE#*'[publish binary]'}" != "$COMMIT_MESSAGE"; then
source ~/.nvm/nvm.sh
nvm use $NODE_VERSION
diff --git a/scripts/node/package-version.js b/scripts/node/package-version.js
new file mode 100644
index 0000000000..99b56aee44
--- /dev/null
+++ b/scripts/node/package-version.js
@@ -0,0 +1,6 @@
+var readJSON = require('read-package-json');
+
+readJSON('package.json', function(err, data) {
+ if (err) process.stderr.write(err);
+ process.stdout.write(data.version);
+});