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 | |
| parent | cb0ae672aeabefca9704477ea8018ac94f523970 (diff) | |
| parent | ce9886320447440ab5dc8011072ecf331fd77c6a (diff) | |
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
| -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" |
