mirror of
https://github.com/bytedream/aion.git
synced 2025-12-16 14:30:44 +01:00
Add files via upload
This commit is contained in:
13
aion
Normal file
13
aion
Normal 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())
|
||||
Reference in New Issue
Block a user