]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/nested-cuddled-subshell.expect
The 20th batch
[thirdparty/git.git] / t / chainlint / nested-cuddled-subshell.expect
1 2 (
2 3 (cd foo &&
3 4 bar
4 5 ) &&
5 6
6 7 (cd foo &&
7 8 bar
8 9 ) ?!LINT: missing '&&'?!
9 10
10 11 (
11 12 cd foo &&
12 13 bar) &&
13 14
14 15 (
15 16 cd foo &&
16 17 bar) ?!LINT: missing '&&'?!
17 18
18 19 (cd foo &&
19 20 bar) &&
20 21
21 22 (cd foo &&
22 23 bar) ?!LINT: missing '&&'?!
23 24
24 25 foobar
25 26 )