Skip to content

Commit

Permalink
fix deprecate warning
Browse files Browse the repository at this point in the history
  • Loading branch information
EdiWang committed Jun 17, 2024
1 parent 65c8e8b commit f10dd42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Deployment/AzureQuickDeploy.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ if (!$appExists) {
Write-Host "Creating Web App"
if ($useLinuxPlanWithDocker) {
Write-Host "Using Linux Plan with Docker image from '$dockerImageName', this deployment will be ready to run."
$echo = az webapp create -g $rsgName -p $aspName -n $webAppName --deployment-container-image-name $dockerImageName
$echo = az webapp create -g $rsgName -p $aspName -n $webAppName --container-image-name $dockerImageName
}
else {
Write-Host "Using Windows Plan with deployment from GitHub"
Expand Down

0 comments on commit f10dd42

Please sign in to comment.