Skip to content

Commit 7d66f0d

Browse files
authored
Fix container name always lowercase (#4576)
1 parent 9e9bbae commit 7d66f0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/createFunctionApp/FunctionAppCreateStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class FunctionAppCreateStep extends AzureWizardExecuteStepWithActivityOut
9595
deployment: {
9696
storage: {
9797
type: 'blobContainer',
98-
value: `${context.storageAccount?.primaryEndpoints?.blob}app-package-${context.newSiteName?.substring(0, 32)}-${randomUtils.getRandomHexString(7)}`,
98+
value: `${context.storageAccount?.primaryEndpoints?.blob}app-package-${context.newSiteName?.substring(0, 32)?.toLowerCase()}-${randomUtils.getRandomHexString(7)}`,
9999
authentication: createDeploymentStorageAuthentication(context)
100100
}
101101
},

0 commit comments

Comments
 (0)