From 944f531cb9ab75963b940ff483227228c18452c3 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 23 Sep 2019 09:36:06 +0300 Subject: [PATCH] kiss: add back support for tgz archives (y lvm2 y) --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index cfb280f..a46989b 100755 --- a/kiss +++ b/kiss @@ -166,7 +166,7 @@ pkg_extract() { # Only 'tar' archives are currently supported for extraction. # Any other file-types are simply copied to '$mak_dir' which # allows for manual extraction. - if [ -z "${src##*.tar*}" ]; then + if [ -z "${src##*.tar*}" ] || [ -z "${src##*.tgz}" ]; then tar xf "$src_dir/$1/${src##*/}" --strip-components 1 \ || die "$1" "Couldn't extract ${src##*/}"