Skip to content

Commit

Permalink
fix: manual build on linux arm64 (#2041)
Browse files Browse the repository at this point in the history
  • Loading branch information
Suyun114 authored Sep 25, 2024
1 parent a3718a2 commit 5e4ba54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ esac

UNAME_ARCH=$( uname -m )

if [[ "${UNAME_ARCH}" == "arm64" ]]; then
if [[ "${UNAME_ARCH}" == "aarch64" || "${UNAME_ARCH}" == "arm64" ]]; then
export VSCODE_ARCH="arm64"
elif [[ "${UNAME_ARCH}" == "ppc64le" ]]; then
export VSCODE_ARCH="ppc64le"
Expand Down

0 comments on commit 5e4ba54

Please sign in to comment.