]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/if-then-else.expect
chainlint.sed: drop subshell-closing ">" annotation
[thirdparty/git.git] / t / chainlint / if-then-else.expect
1 (
2 if test -n ""
3 then
4 echo very ?!AMP?!
5 echo empty
6 elif test -z ""
7 then
8 echo foo
9 else
10 echo foo &&
11 cat
12 fi ?!AMP?!
13 echo poodle
14 ) &&
15 (
16 if test -n ""; then
17 echo very &&
18 echo empty
19 fi
20 )