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##*/}"