From b46b776404e56715681fa5ef2eec456b2a0a6654 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Mon, 3 Oct 2022 09:39:58 +1100 Subject: [PATCH] Support .tgz files in extract phase --- sysa/helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysa/helpers.sh b/sysa/helpers.sh index 6c7b2f7..c091de1 100755 --- a/sysa/helpers.sh +++ b/sysa/helpers.sh @@ -233,7 +233,7 @@ extract_file() { ;; *) case "${f}" in - *.tar*) + *.tar* | *.tgz) if test -e "${PREFIX}/libexec/rmt"; then # Again, we want to split out into words. # shellcheck disable=SC2086