Start the 2.46 cycle
[git.git] / t / chainlint / return-loop.test
blobf90b1713005b0ddc48a0f35be6447894d79680d7
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