From a72d1c1c01f27011ca0e9641d467d8900aeebb6c Mon Sep 17 00:00:00 2001 From: conor Date: Wed, 13 Nov 2019 11:34:51 +0100 Subject: [PATCH] Add exclusion to adding project prefix to default workspace --- atmos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atmos.py b/atmos.py index a974f08..f6f8cbd 100755 --- a/atmos.py +++ b/atmos.py @@ -26,7 +26,7 @@ def determine_actions(args, params): workspace = workspaces.get_env() workspace_vars = workspace - if (args.project): + if (args.project) and workspace != 'default': workspace = args.project + "-" + workspace env_actions = ["init", "plan", "apply", "destroy"] # Commands that require env context