summaryrefslogtreecommitdiffstats
path: root/t/chainlint/return-loop.expect
blob: cfc0549befe3ff36b5c725009f6aa0230eca29a4 (plain)
1
2
3
4
5
while test $i -lt $((num - 5))
do
	git notes add -m "notes for commit$i" HEAD~$i || return 1
	i=$((i + 1))
done