Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index c66d6d4f..4926d627 100644
--- a/install.sh
+++ b/install.sh
@@ -27,7 +27,8 @@ arch3xui() {
case "$(uname -m)" in
x86_64 | x64 | amd64) echo 'amd64' ;;
armv8* | armv8 | arm64 | aarch64) echo 'arm64' ;;
- armv7* | armv7 | arm | arm32 ) echo 'arm' ;;
+ armv7* | armv7 | arm) echo 'armv7' ;;
+ armv6* | armv6 | arm) echo 'armv6' ;;
*) echo -e "${green}Unsupported CPU architecture! ${plain}" && rm -f install.sh && exit 1 ;;
esac
}