Skip to content

Commit

Permalink
Merge pull request #140 from frontendfixer/main
Browse files Browse the repository at this point in the history
feat: use 'xz' for better compression
  • Loading branch information
ful1e5 authored Aug 21, 2023
2 parents a730952 + f105dd2 commit 06c1570
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -57,4 +57,4 @@ do
wait $PID
done

cd ..
cd ..

0 comments on commit 06c1570

Please sign in to comment.