]> git.ipfire.org Git - thirdparty/git.git/blame - t/chainlint/exit-subshell.test
The 19th batch
[thirdparty/git.git] / t / chainlint / exit-subshell.test
CommitLineData
a5e45014 1test_expect_success 'exit-subshell' '
5238710e
ES
2(
3# LINT: "|| exit {n}" valid subshell escape without hurting &&-chain
4 foo || exit 1
5 bar &&
6 baz
7)
a5e45014 8'