Skip to content

Commit 399aae7

Browse files
committed
fix: sh
1 parent 89fca14 commit 399aae7

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

routes/install.sh.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,7 @@ detect_platform() {
7575
# Detect architecture
7676
case "$(uname -m)" in
7777
x86_64|amd64) arch="amd64" ;;
78-
arm64|aarch64)
79-
if [ "$os" = "macos" ]; then
80-
arch="arm64"
81-
else
82-
print_error "ARM64 is only supported on macOS"
83-
exit 1
84-
fi
85-
;;
78+
arm64|aarch64) arch="arm64" ;;
8679
*) print_error "Unsupported architecture: $(uname -m)"; exit 1 ;;
8780
esac
8881

0 commit comments

Comments
 (0)