Merge pull request #3 from askiiart/dev

Fix absolute paths
This commit is contained in:
askiiart 2022-12-16 21:12:54 -06:00 committed by GitHub
commit 69e88f1d2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()