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[@]}";
do
tar -czvf "../bin/${key}.tar.gz" "${key}" &
tar -cJvf "../bin/${key}.tar.xz" "${key}" &
PID=$!
wait $PID
done
tar -czvf "../bin/Bibata.tar.gz" --exclude="*-Windows" . &
tar -cJvf "../bin/Bibata.tar.xz" --exclude="*-Windows" . &
PID=$!
wait $PID
@ -57,4 +57,4 @@ do
wait $PID
done
cd ..
cd ..