From 76ac46936bf833228aad1621e46d0aa412719d62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20G=C3=B3mez=20de=20la=20Torre?= Date: Sat, 25 Nov 2023 11:03:57 -0500 Subject: [PATCH] Update install.sh --- install.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/install.sh b/install.sh index ba54428..949c854 100644 --- a/install.sh +++ b/install.sh @@ -88,9 +88,6 @@ is_command() { echoerr() { echo "$@" 1>&2 } -# log_prefix() { -# echo "$0" -# } _logp=6 log_set_priority() { _logp="$1" @@ -168,7 +165,7 @@ uname_arch_check() { untar() { tarball=$1 case "${tarball}" in - *.tar.gz | *.tgz | *.tar.xz) tar --no-same-owner -xzf "${tarball}" ;; + *.tar.gz | *.tgz) tar --no-same-owner -xzf "${tarball}" ;; *.tar) tar --no-same-owner -xf "${tarball}" ;; *.zip) unzip "${tarball}" ;; *)