summaryrefslogtreecommitdiff
path: root/t/chainlint/nested-subshell.test
blob: c31da34b73a9e1d1731f6b3046d6cd4bbbabf488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
test_expect_success 'nested-subshell' '
(
	cd foo &&
	(
		echo a &&
		echo b
	) >file &&

	cd foo &&
	(
		echo a
		echo b
	) >file
)
'