Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exit-subshell.test « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e6ab69b88674291d9e786da04f88106ff509ccd (plain)
1
2
3
4
5
6
(
# LINT: "|| exit {n}" valid subshell escape without hurting &&-chain
	foo || exit 1
	bar &&
	baz
)