Remove node 5 and 6 from build script

This commit is contained in:
Kenneth Geisshirt 2017-10-09 14:27:39 +02:00
parent 99bfc7ef2c
commit bf30f4b079
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
node_versions=${@:-4.4.7 5.12.0 6.5.0 7.0.0}
node_versions=${@:-6.5.0 7.0.0}
topdir=$(cd $(dirname "$0")/..; pwd)
@ -41,4 +41,3 @@ for node_version in ${node_versions}; do
cp build/stage/node-pre-gyp/*.tar.gz ${topdir}/out/
)
done