summaryrefslogtreecommitdiff
path: root/makeself.sh
diff options
context:
space:
mode:
authorAlexandr Reshetnikov <hemnstill@users.noreply.github.com>2022-02-07 14:21:20 +0400
committerGitHub <noreply@github.com>2022-02-07 02:21:20 -0800
commit64674c741600cf0e1879cd098e4038cf5ca5d8fe (patch)
treef6c261dbce164464d2cd6cef593db55cad58c23d /makeself.sh
parent5809be74e15eacf38f0e50d07a0612f4ca77c78a (diff)
downloadmakeself-64674c741600cf0e1879cd098e4038cf5ca5d8fe.tar.gz
add test on Alpine and Nanoserver using busybox (#265)
* alpine and nanoserver tests * revert custom tools * try remove prepare steps * revert install pbzip2 Co-authored-by: Решетников Александр (Reshetnikov_AS) <Reshetnikov_AS@directum.ru>
Diffstat (limited to 'makeself.sh')
-rwxr-xr-xmakeself.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/makeself.sh b/makeself.sh
index df55a8d..47025d2 100755
--- a/makeself.sh
+++ b/makeself.sh
@@ -652,6 +652,7 @@ fi
# See if we have GNU tar
TAR=`exec <&- 2>&-; which gtar || command -v gtar || type gtar`
+test -x "$TAR" || TAR=`exec <&- 2>&-; which bsdtar || command -v bsdtar || type bsdtar`
test -x "$TAR" || TAR=tar
tmparch="${TMPDIR:-/tmp}/mkself$$.tar"