Skip to content

Commit 34ab992

Browse files
use best compression
1 parent 4a735e4 commit 34ab992

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/gz-packer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ tar \
1616
-cpf \
1717
- "${target_source}" -P \
1818
| pv -s $(($(du -sk "${target_source}" | awk '{print $1}') * 1024)) |\
19-
gzip > "${target}".tar.gz
19+
gzip --best > "${target}".tar.gz

plugins/j-packer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ tar \
1515
-cpf \
1616
- "${target_source}" -P \
1717
| pv -s $(($(du -sk "${target_source}" | awk '{print $1}') * 1024)) |\
18-
bzip2 > "${target}".tar.xz
18+
bzip2 --best > "${target}".tar.xz

0 commit comments

Comments
 (0)