dev.cmd modificado con el start

This commit is contained in:
Javi Gallego 2016-11-24 10:56:22 +01:00
parent de84b3bffa
commit fa36194a3e
1 changed files with 6 additions and 6 deletions

12
dev.cmd
View File

@ -11,18 +11,18 @@ goto caseUsage
:caseStart
call "%0" stop
echo "################################ Starting services"
call echo "################################ Starting services"
call forever start forever.json
call forever list
call nginx -c "%nginxConf%" -p "%nginxPrefix%"
call cd @salix
call gulp
call start /b nginx -c "%nginxConf%" -p "%nginxPrefix%"
cd @salix
gulp
goto caseExit
:caseStop
echo "################################ Stoping services"
call forever stopall
call nginx -c "%nginxConf%" -p "%nginxPrefix%" -s stop
forever stopall
nginx -c "%nginxConf%" -p "%nginxPrefix%" -s stop
goto caseExit
:caseUsage