*: Switch to python
This commit is contained in:
Executable
+12
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/python3
|
||||
import os
|
||||
import sys
|
||||
|
||||
_HERE = os.path.dirname(os.path.realpath(__file__))
|
||||
_ROOT = os.path.dirname(_HERE)
|
||||
if _ROOT not in sys.path:
|
||||
sys.path.insert(0, _ROOT)
|
||||
|
||||
from src.cli import main
|
||||
|
||||
raise SystemExit(main())
|
||||
Reference in New Issue
Block a user