Skip to content

Commit

Permalink
Update installer.sh to support armv7l
Browse files Browse the repository at this point in the history
  • Loading branch information
ballaswag authored May 6, 2024
1 parent 062857e commit 7cd5c3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ restart_buildroot_service() {
}

ARCH=`uname -m`
if [ "$ARCH" = "aarch64" ] || [ "$ARCH" = "x86_64" ]; then
if [ "$ARCH" = "aarch64" ] || [ "$ARCH" = "x86_64" ] || [ "$ARCH" = "armv7l" ]; then
printf "${green}Installing GuppyFLO ${white}\n"

ASSET="guppyflo_armv6.zip"
Expand Down

0 comments on commit 7cd5c3b

Please sign in to comment.