Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
toolchain
/
llvm
/
linaro-scripts.git
/
7f064d26d5fb6c63b7a228cc3416aada5dc919c3
/
.
/
bisect
/
common.sh
blob: 82ff7e48b3998107616ac6bfcab1b19aa991e719 [
file
] [
log
] [
blame
]
# 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
}