From a8330ac464fc756ee7146266fa3a0cd9f8e7c946 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 23 Mar 2020 01:54:54 +0000 Subject: [PATCH] generate-summary: fix function name --- aptosaurus.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aptosaurus.sh b/aptosaurus.sh index c1d9440..ddc15e4 100755 --- a/aptosaurus.sh +++ b/aptosaurus.sh @@ -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 '__analyse_package "{}"' | sort -k1,2V | uniq | column -t -s "$(printf '\t')"; } task_generate-summary() {