diff --git a/stack_orchestrator/repos/setup_repositories.py b/stack_orchestrator/repos/setup_repositories.py index a137d645..431d8e86 100644 --- a/stack_orchestrator/repos/setup_repositories.py +++ b/stack_orchestrator/repos/setup_repositories.py @@ -245,6 +245,9 @@ def command(ctx, include, exclude, git_ssh, check_only, pull, branches, branches # In order to be compatible with Python 3.8 we need to use this hack to get the path: # See: https://stackoverflow.com/questions/25389095/python-get-path-of-root-project-structure stack_file_path = Path(__file__).absolute().parent.parent.joinpath("data", "stacks", stack, stack_file_name) + print("__file__", __file__) + print("stack_file_name", stack_file_name) + print("stack_file_path", stack_file_path) if not stack_file_path.exists(): error_exit(f"stack {stack} does not exist") with stack_file_path: