Add files via upload

This commit is contained in:
blueShard-dev
2020-06-28 11:16:41 +00:00
committed by GitHub
parent bc65ff575d
commit d1d097bf53
3 changed files with 265 additions and 0 deletions

13
aion Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import glob
import re
import sys
sys.path.insert(1, glob.glob("/usr/local/aion-*/aion_core/shell")[0])
from shell import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r"(-script\.pyw?|\.exe)?$", "", sys.argv[0])
sys.exit(main())