aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorD. Ben Knoble <ben.knoble+github@gmail.com>2025-02-24 14:26:02 -0500
committerJunio C Hamano <gitster@pobox.com>2025-02-24 12:24:16 -0800
commitce9886320447440ab5dc8011072ecf331fd77c6a (patch)
tree735f3c3ca9b1ace50b4fe4cbb56e5bb5c21f9280
parent2f323bb16219c105e0c576ea4c2ece9863f5d926 (diff)
downloadgit-ce9886320447440ab5dc8011072ecf331fd77c6a.tar.gz
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 49da404070 (test-lib: show missing prereq summary, 2021-11-20). Use it. Signed-off-by: D. Ben Knoble <ben.knoble+github@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/aggregate-results.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh
index 6e3bcc4aec..6cb0ff11de 100755
--- a/t/aggregate-results.sh
+++ b/t/aggregate-results.sh
@@ -44,7 +44,7 @@ then
tr -s "," "\n" |
grep -v '^$' |
sort -u |
- paste -s -d ' ')
+ paste -s -d ' ' -)
if test -n "$unique_missing_prereq"
then
printf "\nmissing prereq: $unique_missing_prereq\n\n"