Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,16 @@ install() {
fi

log INFO "validating ARCH: $ARCH"
if [[ "$ARCH" != "x86_64" && "$ARCH" != "arm64" ]]; then
if [[ "$ARCH" != "x86_64" && "$ARCH" != "arm64" && "$ARCH" != "aarch64" ]]; then
echo "Draft CLI is only available for linux x86_64 and arm64 architecture"
file_issue_prompt
exit 1
fi

if [[ "$ARCH" == "x86_64" ]]; then
ARCH="amd64"
elif [[ "$ARCH" == "aarch64" ]]; then
ARCH="arm64"
fi

check_jq_processor_present
Expand Down
Loading