mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
14 lines
257 B
Bash
Executable File
14 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
function exit_if_fail {
|
|
command=$@
|
|
echo "Executing '$command'"
|
|
eval $command
|
|
rc=$?
|
|
if [ $rc -ne 0 ]; then
|
|
echo "'$command' returned $rc."
|
|
exit $rc
|
|
fi
|
|
}
|
|
|
|
exit_if_fail npm run test
|
|
exit_if_fail npm run build |