]> git.ipfire.org Git - thirdparty/git.git/blame - t/chainlint/multi-line-nested-command-substitution.expect
Merge branch 'gc/branch-recurse-submodules-fix'
[thirdparty/git.git] / t / chainlint / multi-line-nested-command-substitution.expect
CommitLineData
bb4efbc5
ES
1(
2 foo &&
3 x=$(
4 echo bar |
5 cat
5be30d0c 6 ) &&
bb4efbc5 7 echo ok
5be30d0c 8) |
06fc5c9f
ES
9sort &&
10(
11 bar &&
12 x=$(echo bar |
13 cat
5be30d0c 14 ) &&
06fc5c9f 15 y=$(echo baz |
5be30d0c 16 fip) &&
06fc5c9f 17 echo fail
5be30d0c 18)