Skip to content

Commit ce98863

Browse files
benknoblegitster
authored andcommitted
t/aggregate-results: fix paste(1) invocation
When running `make test`, when missing prereqs the following is emitted: make aggregate-results usage: paste [-s] [-d delimiters] file ... fixed 1 success 30066 failed 0 broken 218 total 31274 POSIX says that `paste` requires a file operand; stdin was clearly intended by 49da404 (test-lib: show missing prereq summary, 2021-11-20). Use it. Signed-off-by: D. Ben Knoble <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2f323bb commit ce98863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/aggregate-results.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ then
4444
tr -s "," "\n" |
4545
grep -v '^$' |
4646
sort -u |
47-
paste -s -d ' ')
47+
paste -s -d ' ' -)
4848
if test -n "$unique_missing_prereq"
4949
then
5050
printf "\nmissing prereq: $unique_missing_prereq\n\n"

0 commit comments

Comments
 (0)