Skip to content

Commit

Permalink
fix: undo arm uncomment
Browse files Browse the repository at this point in the history
  • Loading branch information
PudgyPug committed Dec 13, 2024
1 parent 0af26ed commit 37afc92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ case "$environment" in
esac

# Check for ARM processor or Unknown and exit if true, meaning the installer is not supported by the processor
# if [[ "$processor" == *"arm"* || "$processor" == "Unknown" ]]; then
# exit_with_error "$processor not yet supported. Exiting installer."
# fi
if [[ "$processor" == *"arm"* || "$processor" == "Unknown" ]]; then
exit_with_error "$processor not yet supported. Exiting installer."
fi

# Print the detected environment and processor
echo "$environment environment with $processor found."
Expand Down

0 comments on commit 37afc92

Please sign in to comment.