# Common functions for the bisect execution # Do not call directly. Feel free to use. safe_run() { CMD="$*" $CMD if [[ $? != 0 ]]; then echo "'$CMD' failed, bailing out" exit 1 fi }