Merge pull request #595 from ethanfowler/patch-1

Fix netclient install on ARMv6
This commit is contained in:
dcarns 2022-01-14 08:52:30 -05:00 committed by GitHub
commit 9e845af8f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,6 +127,9 @@ case $(uname | tr '[:upper:]' '[:lower:]') in
aarch64)
dist=netclient-arm64
;;
armv6l)
dist=netclient-arm6
;;
armv7l)
dist=netclient-arm7
;;