feat: use 'xz' for better compression

This commit is contained in:
Lakshmikanta Patra 2023-08-02 10:01:02 +05:30
parent 160cd666aa
commit f105dd2a9c

View file

@ -40,12 +40,12 @@ cd themes
for key in "${!names[@]}"; for key in "${!names[@]}";
do do
tar -czvf "../bin/${key}.tar.gz" "${key}" & tar -cJvf "../bin/${key}.tar.xz" "${key}" &
PID=$! PID=$!
wait $PID wait $PID
done done
tar -czvf "../bin/Bibata.tar.gz" --exclude="*-Windows" . & tar -cJvf "../bin/Bibata.tar.xz" --exclude="*-Windows" . &
PID=$! PID=$!
wait $PID wait $PID