From 120cfcde70f8b8ed875e1728273064be1304917e Mon Sep 17 00:00:00 2001 From: albertony <12441419+albertony@users.noreply.github.com> Date: Fri, 4 Nov 2022 00:15:03 +0100 Subject: [PATCH] install.sh: fix arm-v6 download --- docs/content/install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/content/install.sh b/docs/content/install.sh index 336dadce1..0adb74400 100755 --- a/docs/content/install.sh +++ b/docs/content/install.sh @@ -109,6 +109,9 @@ case "$OS_type" in armv7*) OS_type='arm-v7' ;; + armv6*) + OS_type='arm-v6' + ;; arm*) OS_type='arm' ;;