+Домены и исправления установщика

This commit is contained in:
justuser 2024-08-19 14:08:23 +03:00
parent 54a4692cac
commit ca1e5422a2
2 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,5 @@
from re import compile, sub
domains = ['jet', 'dyn']
domains = ['jet', 'mirror', 'me']
def domain_ok(domain):
global domains

View File

@ -15,8 +15,14 @@ conf = read()
conf['os'] = os
write(conf)
if os == 'Android':
print('''---
[1/3] Устанавливаем зависимости python...
Устанавливаем зависимости rust...
---''')
system('pkg install rust')
print('''---
[1/3] Устанавливаем зависимости Python...
---''')
system('pip install -r requirements.txt')
@ -33,7 +39,7 @@ elif os == 'Windows':
unpack('bore.zip')
system('del bore.zip')
elif os == 'Android':
system('pkg install bore-cli')
system('pkg install bore')
else:
print('Увы, вероятно Ваша ОС не поддерживается.')
print('Завершение работы...')