generate-summary: Fix xargs call
This commit is contained in:
parent
36e6f51957
commit
7fc1a9e031
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue