Skip to content

Commit b8ec3f5

Browse files
authored
Merge pull request coollabsio#2412 from Dogacel/patch-1
fix: show proper error message on installation if OS is not supported for "archarm" / Orange Pi OS
2 parents 5dc7915 + 5368c49 commit b8ec3f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if [ "$OS_TYPE" = "linuxmint" ]; then
2727
OS_TYPE="ubuntu"
2828
fi
2929

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

0 commit comments

Comments
 (0)