Browse Source

fix: use inflating binaries instead of deflating in unarchive function

master
Eugen Blattner 2 years ago committed by Jeff Widman
parent
commit
7ff9bbd91b
  1. 16
      modules/archive/functions/unarchive

16
modules/archive/functions/unarchive

@ -34,10 +34,10 @@ fi @@ -34,10 +34,10 @@ fi
# here, we check for dropin/multi-threaded replacements
# this should eventually be moved to modules/archive/init.zsh
# as a global alias
if (( $+commands[pigz] )); then
_gzip_bin='pigz'
if (( $+commands[unpigz] )); then
_gzip_bin='unpigz'
else
_gzip_bin='gzip'
_gzip_bin='gunzip'
fi
if (( $+commands[pixz] )); then
@ -46,12 +46,12 @@ else @@ -46,12 +46,12 @@ else
_xz_bin='xz'
fi
if (( $+commands[lbzip2] )); then
_bzip2_bin='lbzip2'
elif (( $+commands[pbzip2] )); then
_bzip2_bin='pbzip2'
if (( $+commands[lbunzip2] )); then
_bzip2_bin='lbunzip2'
elif (( $+commands[pbunzip2] )); then
_bzip2_bin='pbunzip2'
else
_bzip2_bin='bzip2'
_bzip2_bin='bunzip2'
fi
_zstd_bin='zstd'

Loading…
Cancel
Save