Files
server/install_npm_modules.bat
Alexey.Golubev bc3a8ea8df CoAuthoring -> DocService
git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/nodeJSProjects@64979 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-18 10:38:05 +03:00

27 lines
457 B
Batchfile

ECHO OFF
ECHO.
ECHO ----------------------------------------
ECHO Install node.js modules
ECHO ----------------------------------------
CD /D %~dp0\DocService || goto ERROR
call npm install
cd /D ..\Common || goto ERROR
call npm install
cd /D ..\FileConverter || goto ERROR
call npm install
cd /D ..\FileStorage || goto ERROR
call npm install
cd /D ..\SpellChecker || goto ERROR
call npm install
:ERROR
:SUCCESS
exit /b 0