Skip to content

Commit

Permalink
VCI-920: Make saas organization parameter always lower case (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
krankenbro authored Oct 3, 2024
1 parent d44bcc7 commit e8e3717
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/VirtoCommerce.Build/Cloud/Build.SaaS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public string CloudAuthProvider
[Parameter("Cloud Environment Db Provider")] public string DbProvider { get; set; }
[Parameter("Cloud Environment Db Name")] public string DbName { get; set; }


[Parameter("Organization name", Name = "Organization")] public string SaaSOrganizationName { get; set; }
private string _saasOrganizationName;
[Parameter("Organization name", Name = "Organization")] public string SaaSOrganizationName { get => _saasOrganizationName; set => _saasOrganizationName = value?.ToLowerInvariant(); }


[Parameter("Url to Dockerfile which will use to build the docker image in the CloudDeploy/CloudUp Target")]
Expand Down

0 comments on commit e8e3717

Please sign in to comment.