16 lines
244 B
Bash
16 lines
244 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# change into the js directory (one down from scripts)
|
||
|
pushd `dirname $0`
|
||
|
cd ..
|
||
|
|
||
|
# run build (production) and store the exit code
|
||
|
EXITCODE=0
|
||
|
npm run ci:build || EXITCODE=1
|
||
|
|
||
|
# back to root
|
||
|
popd
|
||
|
|
||
|
# exit with exit code
|
||
|
exit $EXITCODE
|