summarylogtreecommitdiffstats
path: root/svgo.sh.in
diff options
context:
space:
mode:
authorbartus2019-10-30 21:52:41 +0100
committerQue Quotion2019-11-01 12:33:36 +0900
commit7c79bfe21813f5403980a5aec5138fd6c6ae0d01 (patch)
treef59931398f0a37e09515163365973eb0ba47d8b8 /svgo.sh.in
parent2be3b9630a14a3fac26a51b9eda94e311c377bf0 (diff)
downloadaur-7c79bfe21813f5403980a5aec5138fd6c6ae0d01.tar.gz
Add multiprocessing to upx/png/svg and fix upx case statement.
Diffstat (limited to 'svgo.sh.in')
-rw-r--r--svgo.sh.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/svgo.sh.in b/svgo.sh.in
index f997a855a0bc..13b46c1fd168 100644
--- a/svgo.sh.in
+++ b/svgo.sh.in
@@ -19,10 +19,12 @@ tidy_svgo() {
msg2 "$(gettext "Optimizing SVG images...")"
local svg
find . -type f -iname "*.svg" 2>/dev/null | while read -r svg ; do
+ [ $(jobs -p|wc -l) -gt $(nproc) ] && wait -n
if [[ $(file --brief --mime-type "$svg") = 'image/svg' ]]; then
- svgo "${SVGOFLAGS[@]}" "$svg" &>/dev/null ||
- warning "$(gettext "Could not optimize SVG image : %s")" "${svg/$pkgdir\//}"
+ { svgo "${SVGOFLAGS[@]}" "$svg" &>/dev/null ||
+ warning "$(gettext "Could not optimize SVG image : %s")" "${svg/$pkgdir\//}"; } &
fi
done
+ wait
fi
}