diff options
author | John McLear <john@mclear.co.uk> | 2015-10-22 16:22:35 +0100 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2015-10-22 16:22:35 +0100 |
commit | 02f88aafff662da955caa0fd0e034ac5ae48779f (patch) | |
tree | e2ad68f8528674bb73d797c84c723292f40cf510 | |
parent | c337a0585c7c5ec9de8813af9770f1dfd704c5f3 (diff) | |
download | etherpad-lite-02f88aafff662da955caa0fd0e034ac5ae48779f.zip |
Update installOnWindows.bat
-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 |