generate-summary: Fix xargs call

This commit is contained in:
Starbeamrainbowlabs 2020-03-23 01:54:17 +00:00
parent 36e6f51957
commit 7fc1a9e031
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ _generate_summary() {
# column: Align all the columns nicely - ref https://unix.stackexchange.com/a/468048/64687
export -f __analyse_package;
find "${dir_sources}" -type f -name "*.deb" -print0 | xargs -0 -n1 -p "$(nproc)" -I{} bash -c 'do_work "{}"' | sort -k1,2V | uniq | column -t -s "$(printf '\t')";
find "${dir_sources}" -type f -name "*.deb" -print0 | xargs -0 -n1 -P "$(nproc)" -I{} bash -c 'do_work "{}"' | sort -k1,2V | uniq | column -t -s "$(printf '\t')";
}
task_generate-summary() {