Skip to content

Commit

Permalink
Add Linux ARMv{6,7} arch to install.sh
Browse files Browse the repository at this point in the history
- As seen from #260 Linux ARMv{6,7} are missing from `install.sh`
  despite binaries are built for these platforms in recent releases, so
  add these two to the pool.
  • Loading branch information
yermulnik committed Jul 19, 2022
1 parent b83a34e commit 05dbd11
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ is_supported_platform() {
darwin/arm64) found=0 ;;
linux/amd64) found=0 ;;
linux/arm64) found=0 ;;
linux/armv6) found=0 ;;
linux/armv7) found=0 ;;
esac
return $found
}
Expand Down

0 comments on commit 05dbd11

Please sign in to comment.