From 4677aca17cc8f9f48a3b0edf103d225cf577c867 Mon Sep 17 00:00:00 2001 From: Usama Abdul Sattar Date: Fri, 3 May 2019 06:05:12 +0500 Subject: [PATCH] Update Checks.py --- Defs/Checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Defs/Checks.py b/Defs/Checks.py index 098d3de..4b2fd2b 100644 --- a/Defs/Checks.py +++ b/Defs/Checks.py @@ -38,7 +38,7 @@ def checkNgrok(): #Ngrok check if path.isfile('Server/ngrok') == False: #Is Ngrok downloaded? print(_('[*] Ngrok Not Found !!')) print(_('[*] Downloading Ngrok...')) - if 'Android' in str(check_output(('uname', '-a'))): + if 'Android' in str(check_output(('uname', '-a'))) or 'arm' in str(check_output(('uname', '-a'))): filename = 'ngrok-stable-linux-arm.zip' else: ostype = systemos().lower()