File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
management_instance/runbooks/shared_scripts Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -308,8 +308,8 @@ def ensure_git_exists():
308
308
cac_org = parser .git_organization .strip ()
309
309
template_repo = parser .template_repo_name .strip ()
310
310
new_repo_custom_prefix = re .sub ('[^a-zA-Z0-9]' , '_' , parser .new_repo_name_prefix .strip ())
311
- tenant_name_sanitized = re .sub ('[^a-zA-Z0-9]' , '_' , parser .tenant_name .lower (). strip ())
312
- project_name_sanitized = re .sub ('[^a-zA-Z0-9]' , '_' , parser .new_project_name .lower (). strip ())
311
+ tenant_name_sanitized = re .sub ('[^a-zA-Z0-9]' , '_' , parser .tenant_name .strip ())
312
+ project_name_sanitized = re .sub ('[^a-zA-Z0-9]' , '_' , parser .new_project_name .strip ())
313
313
314
314
# The new repo is prefixed either with the custom prefix or the tenant name if no custom prefix is defined
315
315
new_repo_prefix = new_repo_custom_prefix if len (new_repo_custom_prefix ) != 0 else tenant_name_sanitized
You can’t perform that action at this time.
0 commit comments