diff options
author | Tom Hunkapiller <tom@furycodes.com> | 2015-04-08 23:11:39 -0500 |
---|---|---|
committer | Tom Hunkapiller <tom@furycodes.com> | 2015-04-08 23:12:12 -0500 |
commit | 4385598de64988da6040e4b7a222110c67826a92 (patch) | |
tree | c382436a3e354ce86e050ece7228682581d303b6 /bin/installOnWindows.bat | |
parent | 63cbab484dd569796f2636363a069e7981a8e6ea (diff) | |
download | etherpad-lite-4385598de64988da6040e4b7a222110c67826a92.zip |
update node version checking to 0.10+ or io.js
Diffstat (limited to 'bin/installOnWindows.bat')
-rw-r--r-- | bin/installOnWindows.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/installOnWindows.bat b/bin/installOnWindows.bat index c1e0a822..9b9a42e4 100644 --- a/bin/installOnWindows.bat +++ b/bin/installOnWindows.bat @@ -8,7 +8,7 @@ cmd /C node -e "" || ( echo "Please install node.js ( http://nodejs.org )" && ex echo _ echo Checking node version... -set check_version="if(['10'].indexOf(process.version.split('.')[1].toString()) === -1) { console.log('You are running a wrong version of Node. Etherpad requires v0.10.x'); process.exit(1) }" +set check_version="if(['10','11','12'].indexOf(process.version.split('.')[1]) === -1 && process.version.split('.')[0] !== '1') { console.log('You are running a wrong version of Node. Etherpad requires v0.10+'); process.exit(1) }" cmd /C node -e %check_version% || exit /B 1 echo _ |