blob: 7a153e9ae7d6190a246ed3e19f3df304e777f9d0 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001
2rem nvmw use v0.12.4
3
4echo "npm install"
5call npm install
6
7if %errorlevel% NEQ 0 GOTO BAD_EXIT
8
9echo "bower install"
10call bower install
11if %errorlevel% NEQ 0 GOTO BAD_EXIT
12
13
14echo "build --v"
15grunt build --v
16
17if %errorlevel% NEQ 0 GOTO BAD_EXIT
18
19GOTO SMOOTH
20
21
22:BAD_EXIT
23echo BOO
24exit/ b 1
25
26
27:SMOOTH
28echo "OK."
29exit /b 0