mirror of
https://github.com/grafana/grafana.git
synced 2025-07-25 16:23:49 +08:00
16 lines
308 B
Bash
Executable File
16 lines
308 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 ./scripts/circle-metrics.sh
|
|
exit_if_fail npm run prettier:check
|
|
exit_if_fail npm run test
|