diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-03-03 08:53:01 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-03-03 08:53:01 -0800 |
| commit | 1aabec0b484f4f073defb343dfdcdac601a26adc (patch) | |
| tree | 28bc1ab54adacc03cb0b5d9cb2455a6f2f89feaa /t | |
| parent | A bit more post -rc0 (diff) | |
| parent | t/aggregate-results: fix paste(1) invocation (diff) | |
| download | git-1aabec0b484f4f073defb343dfdcdac601a26adc.tar.gz git-1aabec0b484f4f073defb343dfdcdac601a26adc.zip | |
Merge branch 'dk/test-aggregate-results-paste-fix'
The use of "paste" command for aggregating the test results have
been corrected.
* dk/test-aggregate-results-paste-fix:
t/aggregate-results: fix paste(1) invocation
Diffstat (limited to 't')
| -rwxr-xr-x | t/aggregate-results.sh | 2 |
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" |
