Revision ec583449067bab5b800ecc63926f35c9dae96fa1 authored by Johannes Schindelin on 11 March 2023, 20:29:12 UTC, committed by Johannes Schindelin on 17 April 2023, 19:16:07 UTC
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent c96ecfe
Raw File
chain-break-continue.expect
git ls-tree --name-only -r refs/notes/many_notes |
while read path
do
	test "$path" = "foobar/non-note.txt" && continue
	test "$path" = "deadbeef" && continue
	test "$path" = "de/adbeef" && continue

	if test $(expr length "$path") -ne $hexsz
	then
		return 1
	fi
done
back to top