1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00

Insert absolute path

This commit is contained in:
Mo 2022-05-17 12:04:56 +02:00
parent 76e8dbba46
commit 9ba1dc2925
3 changed files with 4 additions and 3 deletions

View file

@ -5,7 +5,7 @@ from pathlib import Path
from shared import LOCAL_BIN, LOGS_DIR, install_latest_pipx, poetry_update
sys.path.insert(0, "..")
sys.path.insert(0, Path(__file__).parent.absolute())
from terminal_utils import run, step

View file

@ -1,10 +1,11 @@
# No relative imports allowed in this file to be able to run server_setup.py without packages
import sys
from pathlib import Path
from shared import LOGS_DIR, REPO_DIR
sys.path.insert(0, "..")
sys.path.insert(0, Path(__file__).parent.absolute())
from terminal_utils import run

View file

@ -3,7 +3,7 @@
import sys
from pathlib import Path
sys.path.insert(0, "..")
sys.path.insert(0, Path(__file__).parent.absolute())
from terminal_utils import run
LOCAL_BIN = Path("/home/admin/.local/bin/")