Support external stack file #650

Merged
telackey merged 7 commits from dboreham/external-stack-file into main 2023-11-15 03:59:48 +00:00
Showing only changes of commit 7d7527d777 - Show all commits

View File

@ -153,7 +153,7 @@ def get_parsed_deployment_spec(spec_file):
def stack_is_external(stack: str):
# Bit of a hack: if the supplied stack string represents
# a path that exists then we assume it must be external
return Path(stack).exists()
return Path(stack).exists() if stack is not None else False
def get_yaml():