Skip to content

Commit c8db708

Browse files
rscharfegitster
authored andcommitted
t0090: avoid passing empty string to printf %d
FreeBSD's printf(1) doesn't accept empty strings for numerical format specifiers: $ printf "%d\n" "" >/dev/null; echo $? printf: : expected numeric value 1 Initialize the AWK variable c to make sure the shell variable subtree_count always contains a numerical value, in order to keep the subsequently called printf happy. Signed-off-by: Rene Scharfe <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 4ed115e commit c8db708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t0090-cache-tree.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ generate_expected_cache_tree_rec () {
2222
# ls-files might have foo/bar, foo/bar/baz, and foo/bar/quux
2323
# We want to count only foo because it's the only direct child
2424
subtrees=$(git ls-files|grep /|cut -d / -f 1|uniq) &&
25-
subtree_count=$(echo "$subtrees"|awk '$1 {++c} END {print c}') &&
25+
subtree_count=$(echo "$subtrees"|awk -v c=0 '$1 {++c} END {print c}') &&
2626
entries=$(git ls-files|wc -l) &&
2727
printf "SHA $dir (%d entries, %d subtrees)\n" "$entries" "$subtree_count" &&
2828
for subtree in $subtrees

0 commit comments

Comments
 (0)