mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-10 10:15:58 +00:00
2382c3f0ab
git-subtree-dir: spiffworkflow-frontend git-subtree-split: 75dbea67346d1b0c161b1d7582eeb5442aec5762
12 lines
276 B
Bash
Executable File
12 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function error_handler() {
|
|
>&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
|
|
exit "$2"
|
|
}
|
|
trap 'error_handler ${LINENO} $?' ERR
|
|
set -o errtrace -o errexit -o nounset -o pipefail
|
|
|
|
git pull
|
|
./bin/build_and_run_with_docker_compose
|