From e3ac097809b5282e26eba2bd37023e13c41c9a95 Mon Sep 17 00:00:00 2001 From: askiiart Date: Fri, 16 Dec 2022 21:07:00 -0600 Subject: [PATCH] Fix absolute paths --- composer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.py b/composer.py index 60e6587..68f22bb 100644 --- a/composer.py +++ b/composer.py @@ -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()