mirror of
https://github.com/erenfro/gen2stage4.git
synced 2024-11-13 02:38:57 -05:00
Disabled broken feature
This commit is contained in:
parent
f7655ed21d
commit
df3d89d5a2
1 changed files with 7 additions and 5 deletions
12
mkstage4.sh
12
mkstage4.sh
|
@ -239,10 +239,12 @@ fi
|
|||
|
||||
# Compression options
|
||||
COMP_OPTIONS=("${COMPRESS_AVAILABLE[$COMPRESS_TYPE]}")
|
||||
if [[ "${COMPRESS_AVAILABLE[$COMPRESS_TYPE]}" == *"/xz" ]]
|
||||
then
|
||||
COMP_OPTIONS+=("-T0")
|
||||
fi
|
||||
# This currently breaks the command, and is temporarily disables, see:
|
||||
# https://github.com/TheChymera/mkstage4/issues/46
|
||||
#if [[ "${COMPRESS_AVAILABLE[$COMPRESS_TYPE]}" == *"/xz" ]]
|
||||
#then
|
||||
# COMP_OPTIONS+=("-T0")
|
||||
#fi
|
||||
|
||||
# Generic tar options:
|
||||
TAR_OPTIONS=(
|
||||
|
@ -250,7 +252,7 @@ TAR_OPTIONS=(
|
|||
--ignore-failed-read
|
||||
"--xattrs-include='*.*'"
|
||||
--numeric-owner
|
||||
"--use-compress-prog=\'${COMP_OPTIONS[@]}\'"
|
||||
"--use-compress-prog=\"${COMP_OPTIONS[@]}\""
|
||||
)
|
||||
|
||||
# if not in quiet mode, this message will be displayed:
|
||||
|
|
Loading…
Reference in a new issue