Skip to content
Snippets Groups Projects
Commit 72451d7a authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

FIX: fix path and use of env var

parent 8cdb5c7a
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,8 @@ out : str ...@@ -43,7 +43,8 @@ out : str
A YAML text representation of the backup process. A YAML text representation of the backup process.
""" """
command = ["./utils/backup.sh"] utils_path = os.path.dirname(__file__)
command = [os.path.join(utils_path, "backup.sh")]
env = os.environ.copy() env = os.environ.copy()
if not directory: if not directory:
......
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment