Skip to content

Commit 57fb85d

Browse files
authored
use lowercase type, storageaccount and country (#3864)
Co-authored-by: freddydk <[email protected]>
1 parent 93c5d71 commit 57fb85d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Artifacts/Get-BCArtifactUrl.ps1

+3-3
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ try {
208208
}
209209

210210
$parameters = @{
211-
"storageAccount" = $storageAccount
212-
"Type" = $Type
211+
"storageAccount" = $storageAccount.ToLowerInvariant()
212+
"Type" = $Type.ToLowerInvariant()
213213
"VersionPrefix" = $versionPrefix
214-
"Country" = $country
214+
"Country" = $country.ToLowerInvariant()
215215
"doNotCheckPlatform" = $doNotCheckPlatform
216216
}
217217
if ($after) {

0 commit comments

Comments
 (0)