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

Wrong directory

This commit is contained in:
Mo 2022-05-17 12:06:57 +02:00
parent 9ba1dc2925
commit 211b83e431
3 changed files with 3 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, Path(__file__).parent.absolute())
sys.path.insert(0, Path(__file__).parent.parent.absolute())
from terminal_utils import run, step

View file

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

View file

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