diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/installOnWindows.bat | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bin/installOnWindows.bat b/bin/installOnWindows.bat index 9b9a42e4..89fa335d 100644 --- a/bin/installOnWindows.bat +++ b/bin/installOnWindows.bat @@ -7,11 +7,6 @@ cd /D "%~dp0\.." cmd /C node -e "" || ( echo "Please install node.js ( http://nodejs.org )" && exit /B 1 ) echo _ -echo Checking node version... -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 _ echo Ensure that all dependencies are up to date... If this is the first time you have run Etherpad please be patient. cmd /C npm install src/ --loglevel warn || exit /B 1 |