diff options
author | Marcel Klehr <mklehr@gmx.net> | 2013-03-16 09:46:35 +0100 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2013-03-16 09:46:35 +0100 |
commit | 5a9393d5da5b50232fdf055c5d335e6b0ce252cc (patch) | |
tree | 5aa59db7b3dc3a3c8f9f467e315821da6ba48922 /bin/installOnWindows.bat | |
parent | a31605216fe72b8ae213394385aecee0bfb24ff2 (diff) | |
download | etherpad-lite-5a9393d5da5b50232fdf055c5d335e6b0ce252cc.zip |
Update version checks
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 f678672b..f7452982 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(['6','8'].indexOf(process.version.split('.')[1].toString()) === -1) { console.log('You are running a wrong version of Node. Etherpad Lite requires v0.6.x or v0.8.x'); process.exit(1) }" +set check_version="if(['6','8','10'].indexOf(process.version.split('.')[1].toString()) === -1) { console.log('You are running a wrong version of Node. Etherpad Lite requires v0.6.x, v0.8.x or v0.10.x'); process.exit(1) }" cmd /C node -e %check_version% || exit /B 1 echo _ |