Skip to content

Commit

Permalink
Format install shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed Mar 26, 2024
1 parent b2a6ec3 commit 10a5b75
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ case "$ARCH" in
x86-64) ARCH="x86_64" ;;
arm64) ARCH="aarch64" ;;
aarch64) ARCH="aarch64" ;;
*) echo "Unsupported architecture: $ARCH" >&2; exit 1 ;;
*)
echo "Unsupported architecture: $ARCH" >&2;
exit 1 ;;
esac

# Construct file pattern for our desired zip file based on OS + arch
Expand Down

0 comments on commit 10a5b75

Please sign in to comment.