aboutsummaryrefslogtreecommitdiffstats
path: root/t/chainlint/chain-break-return-exit.test
blob: e2b059933aa6834e66759d635a93d8129cb74563 (plain) (blame)
1
2
3
4
5
for i in 1 2 3 4 ; do
# LINT: broken &&-chain okay if explicit "return $?" signals failure
	git checkout main -b $i || return $?
	test_commit $i $i $i tag$i || return $?
done