summaryrefslogtreecommitdiffstats
path: root/t/chainlint/chain-break-false.test
blob: a5aaff8c8a4290fe32eeb231787b368dc131fd9e (plain)
1
2
3
4
5
6
7
8
9
10
# LINT: broken &&-chain okay if explicit "false" signals failure
if condition not satisified
then
	echo it did not work...
	echo failed!
	false
else
	echo it went okay
	congratulate user
fi