Add exception for env vars to use _
This commit is contained in:
parent
9fac2103c5
commit
41a422e0bc
1 changed files with 4 additions and 1 deletions
5
atmos.py
5
atmos.py
|
|
@ -73,7 +73,10 @@ def generate_creds(args):
|
|||
|
||||
project_name = ""
|
||||
if (args.project):
|
||||
project_name = args.project.upper() + "-"
|
||||
delimeter = "-"
|
||||
if (args.e):
|
||||
delimeter = "_"
|
||||
project_name = args.project.upper() + delimeter
|
||||
|
||||
contents = ""
|
||||
for workspace in workspaces:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue