mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-04-07 14:04:35 +08:00
git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/nodeJSProjects@64979 954022d7-b5bf-4e40-9824-e11837661b57
27 lines
457 B
Batchfile
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
|