From 02f88aafff662da955caa0fd0e034ac5ae48779f Mon Sep 17 00:00:00 2001 From: John McLear Date: Thu, 22 Oct 2015 16:22:35 +0100 Subject: [PATCH] Update installOnWindows.bat --- bin/installOnWindows.bat | 5 ----- 1 file changed, 5 deletions(-) diff --git a/bin/installOnWindows.bat b/bin/installOnWindows.bat index 9b9a42e41..89fa335d8 100644 --- a/bin/installOnWindows.bat +++ b/bin/installOnWindows.bat @@ -6,11 +6,6 @@ cd /D "%~dp0\.." :: Is node installed? 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