forked from kiss-community/kiss
kiss: set KISS_COMPRESS once
This commit is contained in:
parent
40fd458c8f
commit
3e08cf1ff2
9
kiss
9
kiss
@ -240,7 +240,7 @@ pkg_cache() {
|
|||||||
|
|
||||||
set +f
|
set +f
|
||||||
set -f -- \
|
set -f -- \
|
||||||
"$bin_dir/$1@$repo_ver-$repo_rel.tar.${KISS_COMPRESS:=gz}" \
|
"$bin_dir/$1@$repo_ver-$repo_rel.tar.$KISS_COMPRESS" \
|
||||||
"$bin_dir/$1@$repo_ver-$repo_rel.tar."*
|
"$bin_dir/$1@$repo_ver-$repo_rel.tar."*
|
||||||
|
|
||||||
tar_file=$1
|
tar_file=$1
|
||||||
@ -656,14 +656,14 @@ pkg_tar() (
|
|||||||
cd "$pkg_dir/$1"
|
cd "$pkg_dir/$1"
|
||||||
|
|
||||||
# Create a tarball from the contents of the built package.
|
# Create a tarball from the contents of the built package.
|
||||||
tar cf - . | case ${KISS_COMPRESS:=gz} in
|
tar cf - . | case $KISS_COMPRESS in
|
||||||
bz2) bzip2 -z ;;
|
bz2) bzip2 -z ;;
|
||||||
gz) gzip -6 ;;
|
gz) gzip -6 ;;
|
||||||
lzma) lzma -z ;;
|
lzma) lzma -z ;;
|
||||||
lz) lzip -z ;;
|
lz) lzip -z ;;
|
||||||
xz) xz -zT0 ;;
|
xz) xz -zT0 ;;
|
||||||
zst) zstd -z ;;
|
zst) zstd -z ;;
|
||||||
esac > "$bin_dir/$1@$repo_ver-$repo_rel.tar.${KISS_COMPRESS:=gz}"
|
esac > "$bin_dir/$1@$repo_ver-$repo_rel.tar.$KISS_COMPRESS"
|
||||||
|
|
||||||
log "$1" "Successfully created tarball"
|
log "$1" "Successfully created tarball"
|
||||||
run_hook post-package "$1"
|
run_hook post-package "$1"
|
||||||
@ -1710,6 +1710,9 @@ main() {
|
|||||||
# up before we die. This occurs on 'Ctrl+C' as well as success and error.
|
# up before we die. This occurs on 'Ctrl+C' as well as success and error.
|
||||||
trap pkg_clean EXIT INT
|
trap pkg_clean EXIT INT
|
||||||
|
|
||||||
|
# Default compression method.
|
||||||
|
: "${KISS_COMPRESS:=gz}"
|
||||||
|
|
||||||
# Figure out which 'sudo' command to use based on the user's choice or what
|
# Figure out which 'sudo' command to use based on the user's choice or what
|
||||||
# is available on the system.
|
# is available on the system.
|
||||||
cmd_su=${KISS_SU:-"$(
|
cmd_su=${KISS_SU:-"$(
|
||||||
|
Loading…
Reference in New Issue
Block a user