Skip to content

Commit

Permalink
Merge pull request coollabsio#2412 from Dogacel/patch-1
Browse files Browse the repository at this point in the history
fix: show proper error message on installation if OS is not supported for "archarm" / Orange Pi OS
  • Loading branch information
andrasbacsai authored Jun 11, 2024
2 parents 5dc7915 + 5368c49 commit b8ec3f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if [ "$OS_TYPE" = "linuxmint" ]; then
OS_TYPE="ubuntu"
fi

if [ "$OS_TYPE" = "arch" ]; then
if [ "$OS_TYPE" = "arch" ] || [ "$OS_TYPE" = "archarm" ]; then
OS_VERSION="rolling"
else
OS_VERSION=$(grep -w "VERSION_ID" /etc/os-release | cut -d "=" -f 2 | tr -d '"')
Expand Down

0 comments on commit b8ec3f5

Please sign in to comment.