Skip to content

Commit e2ebb5c

Browse files
committed
Merge branch 'dt/cache-tree-repair'
This fixes a topic that has graduated to 'master'. * dt/cache-tree-repair: t0090: avoid passing empty string to printf %d
2 parents 792a572 + c8db708 commit e2ebb5c

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)