]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/block.test
clone: allow "--bare" with "-o"
[thirdparty/git.git] / t / chainlint / block.test
1 (
2 # LINT: missing "&&" after first "echo"
3 foo &&
4 {
5 echo a
6 echo b
7 } &&
8 bar &&
9 # LINT: missing "&&" at closing "}"
10 {
11 echo c
12 }
13 baz
14 )