aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/set-e/for1.0
blob: 345bf14bda3cd96ce2b456156fa4ea25a1b4d277 (plain) (blame)
1
2
3
4
5
6
7
8
set -e
f() {
	for i in a b c; do
		false
		true
	done
}
f || true