From 31729871b7508e33cb1cc26f97c7b4c164d78a3f Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Sat, 22 Aug 2026 17:58:59 -0700 Subject: [PATCH] fix(installer): extract portable archive path --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 7f317b50..ca2887f2 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -83,7 +83,7 @@ fetch "${base}/SHA256SUMS" "${tmp}/SHA256SUMS" || die "could not download SHA256 fi ) || die "checksum verification failed for ${archive}" -tar -xzf "${tmp}/${archive}" -C "$tmp" "$BIN" || die "archive did not contain ${BIN}" +tar -xzf "${tmp}/${archive}" -C "$tmp" "./${BIN}" || die "archive did not contain ${BIN}" chmod +x "${tmp}/${BIN}" prefix="${FANOUT_PREFIX:-}"