Fix absolute paths
This commit is contained in:
parent
a7c6ffcfee
commit
e3ac097809
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ compose_path = config.readline()
|
|||
compose_path = compose_path[compose_path.find('=')+1:].strip()
|
||||
if compose_path[-1:] != '/':
|
||||
compose_path += '/'
|
||||
if compose_path[1] != '/':
|
||||
if compose_path[0] != '/':
|
||||
compose_path = f'{working_dir}/{compose_path}'
|
||||
|
||||
exclude_containers = config.readline()
|
||||
|
|
Loading…
Reference in a new issue