1
Fork 0

build script: remove intermediate shell

main
Motiejus Jakštys 2024-01-19 13:24:39 +02:00
parent 624657aacd
commit 280290baf7
1 changed files with 2 additions and 2 deletions

View File

@ -11,5 +11,5 @@ find public \
-name '*.css' -or \
-name '*.map' -or \
-name '*.pdf' | \
awk '{print "zopfli "$0;print "brotli "$0}' | \
xargs -P$(nproc) -I{} $SHELL -c {}
tee >(xargs -n1 -P$(nproc) zopfli) | \
xargs -n1 -P$(nproc) brotli