Skip to content
This repository has been archived by the owner on Jan 12, 2025. It is now read-only.

Commit

Permalink
Fix errant semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcwang committed Jan 5, 2024
1 parent e74154f commit 5802baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vscode-cli/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [ "${ARCH}" == "x86_64" ] ; then
else
ARCH="linux-x64"
fi
elif [ "${ARCH}" == "aarch64" ] || [ "${ARCH}" == "arm64" ];; then
elif [ "${ARCH}" == "aarch64" ] || [ "${ARCH}" == "arm64" ] ; then
if [ -f "/lib/ld-musl-aarch64.so.1" ] ; then
ARCH="alpine-arm64"
else
Expand Down

0 comments on commit 5802baa

Please sign in to comment.