Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
66538: build: don't swallow exit status in teamcity-weekly-roachtest.sh r=stevendanna a=tbg 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 Co-authored-by: Tobias Grieger <[email protected]>
- Loading branch information