]> git.ipfire.org Git - thirdparty/git.git/blame - t/chainlint/loop-in-if.test
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / t / chainlint / loop-in-if.test
CommitLineData
1f718b0b
ES
1(
2 if true
3 then
4 while true
5 do
5459bc1b 6# LINT: missing "&&" on "echo"
1f718b0b
ES
7 echo "pop"
8 echo "glup"
5459bc1b 9# LINT: missing "&&" on "done"
1f718b0b
ES
10 done
11 foo
5459bc1b 12# LINT: missing "&&" on "fi"
1f718b0b
ES
13 fi
14 bar
15)