Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: don't swallow exit status in teamcity-weekly-roachtest.sh
The assignment to exit_status would always assign 0: ``` $ if [ false ]; then echo $?; fi 0 ``` Now we do this: ``` $ false || echo $? 1 ``` (This also works under `set -e`, as in that script). Release note: None
- Loading branch information