From d5da31d6911614a969a9791eb2f39e820bba75ce Mon Sep 17 00:00:00 2001 From: Adithya Kumar Date: Tue, 30 Apr 2024 01:42:01 +0530 Subject: [PATCH] fixup! Support FreeBSD --- packcheck.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/packcheck.sh b/packcheck.sh index 28a36f5..e44be50 100755 --- a/packcheck.sh +++ b/packcheck.sh @@ -910,6 +910,7 @@ ghcup_install() { os=$(uname -s -m) case "$os" in "Linux x86_64"|"FreeBSD x86_64") GHCUP_ARCH="x86_64-linux" ;; + "Linux amd64"|"FreeBSD amd64") GHCUP_ARCH="aarch64-linux" ;; "Darwin x86_64") GHCUP_ARCH="x86_64-apple-darwin" ;; "Darwin arm64") GHCUP_ARCH="aarch64-apple-darwin" ;; *) echo "Unknown OS/Arch: $os"; exit 1;;