From 3354bcde5ef5ea75aaa508923c2b0023a7a3171e Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Thu, 2 May 2024 10:59:04 +0800 Subject: [PATCH] Update backtrace_install.sh --- backtrace_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backtrace_install.sh b/backtrace_install.sh index 02dbbcc..3eb09c3 100644 --- a/backtrace_install.sh +++ b/backtrace_install.sh @@ -9,7 +9,7 @@ arch=$(uname -m) case $os in Linux) case $arch in - x86_64) + "x86_64" | "x86" | "amd64" | "x64") wget -O backtrace https://github.com/oneclickvirt/backtrace/releases/download/output/backtrace-linux-amd64 ;; "i386" | "i686") @@ -26,7 +26,7 @@ case $os in ;; Darwin) case $arch in - x86_64) + "x86_64" | "x86" | "amd64" | "x64") wget -O backtrace https://github.com/oneclickvirt/backtrace/releases/download/output/backtrace-darwin-amd64 ;; "i386" | "i686")