Skip to content

Commit 143b962

Browse files
(AzureCXP) fixes MicrosoftDocs/azure-docs#105330
In step4# Deploy some code cmdlet az webapp config appsettings set is missing the value to the parameter --name.
1 parent cd3e885 commit 143b962

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/app-service/quickstart-arc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Get a sample Node.js app using Git and deploy it using [ZIP deploy](deploy-zip.m
5252
git clone https://github.com/Azure-Samples/nodejs-docs-hello-world
5353
cd nodejs-docs-hello-world
5454
zip -r package.zip .
55-
az webapp config appsettings set --resource-group myResourceGroup --name --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
55+
az webapp config appsettings set --resource-group myResourceGroup --name <app-name> --settings SCM_DO_BUILD_DURING_DEPLOYMENT=true
5656
az webapp deployment source config-zip --resource-group myResourceGroup --name <app-name> --src package.zip
5757
```
5858

0 commit comments

Comments
 (0)