summaryrefslogtreecommitdiff
path: root/bin/installOnWindows.bat
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2012-07-05 09:54:25 -0700
committerJohn McLear <john@mclear.co.uk>2012-07-05 09:54:25 -0700
commitbc15ea5c1534d97e35eedb8c1124c275547ea91d (patch)
tree72f44cb501b4e47a0ec7659ac55636e3bcf08070 /bin/installOnWindows.bat
parent071ddefc39ebe8f2c29968637d147b9bc2c6472b (diff)
parent42bbbd426f0b4036fb0b4e89a765e2495476e09d (diff)
downloadetherpad-lite-bc15ea5c1534d97e35eedb8c1124c275547ea91d.zip
Merge pull request #829 from marcelklehr/support-node-0.8
Support node 0.8
Diffstat (limited to 'bin/installOnWindows.bat')
-rw-r--r--bin/installOnWindows.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/installOnWindows.bat b/bin/installOnWindows.bat
index f015a544..159c517f 100644
--- a/bin/installOnWindows.bat
+++ b/bin/installOnWindows.bat
@@ -1,5 +1,5 @@
@echo off
-set NODE_VERSION=0.6.5
+set NODE_VERSION=0.8.1
set JQUERY_VERSION=1.7
:: change directory to etherpad-lite root
@@ -22,8 +22,8 @@ echo _
echo Copying custom templates...
set custom_dir=node_modules\ep_etherpad-lite\static\custom
FOR %%f IN (index pad timeslider) DO (
- if NOT EXIST %custom_dir%\%%f.js copy %custom_dir%\js.template %custom_dir%\%%f.js
- if NOT EXIST %custom_dir%\%%f.css copy %custom_dir%\css.template %custom_dir%\%%f.css
+ if NOT EXIST "%custom_dir%\%%f.js" copy "%custom_dir%\js.template" "%custom_dir%\%%f.js"
+ if NOT EXIST "%custom_dir%\%%f.css" copy "%custom_dir%\css.template" "%custom_dir%\%%f.css"
)
echo _