]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/return-loop.test
Merge branch 'jk/clone-allow-bare-and-o-together'
[thirdparty/git.git] / t / chainlint / return-loop.test
1 while test $i -lt $((num - 5))
2 do
3 # LINT: "|| return {n}" valid loop escape outside subshell; no "&&" needed
4 git notes add -m "notes for commit$i" HEAD~$i || return 1
5 i=$((i + 1))
6 done