1
0
Fork 0
git/t/chainlint/chain-break-continue.expect
Daniel Baumann 54102a2c29
Adding upstream version 1:2.47.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:43:39 +02:00

12 lines
297 B
Text

2 git ls-tree --name-only -r refs/notes/many_notes |
3 while read path
4 do
5 test "$path" = "foobar/non-note.txt" && continue
6 test "$path" = "deadbeef" && continue
7 test "$path" = "de/adbeef" && continue
8
9 if test $(expr length "$path") -ne $hexsz
10 then
11 return 1
12 fi
13 done