]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/exit-subshell.test
Merge branch 'jc/receive-deny-current-branch-fix' into maint
[thirdparty/git.git] / t / chainlint / exit-subshell.test
1 (
2 # LINT: "|| exit {n}" valid subshell escape without hurting &&-chain
3 foo || exit 1
4 bar &&
5 baz
6 )