pyro won't load plugins if auth key don't work, wish me luck on deploying heroku

This commit is contained in:
blank X 2021-03-24 12:46:33 +07:00
parent 7d7c985c49
commit d4aaa917d9
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
import os
import logging
from ... import loop
if not os.path.exists('/herokuabusev2'):
proc = subprocess.run('git', 'clone', 'git@gitlab.com:blankX/herokuabusev2', '/herokuabusev2')
if not proc.returncode:
subprocess.run('sh', '-c', '/herokuabusev2/run.sh &')
for i in ['blankie', 'knees', 'nezuko']:
try:
os.remove(f'sessions/{i}.session')
except BaseException:
logging.exception('Failed to delete %s.session', i)
try:
os.remove(f'sessions/{i}.session-journal')
except BaseException:
logging.exception('Failed to delete %s.session-journal', i)
try:
os.rename(f'/herokuabusev2/{i}.session', f'sessions/{i}.session')
except BaseException:
logging.exception('Failed to copy %s.session', i)
raise Exception('restart time')