Skip to content

Commit fdf734b

Browse files
committed
Fixes #926 - incorrect description for --nozip
1 parent bbc388c commit fdf734b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Azure.Functions.Cli/Actions/AzureActions/PublishFunctionAppAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public override ICommandLineParserResult ParseArgs(string[] args)
7373
.Callback(f => ListIncludedFiles = f);
7474
Parser
7575
.Setup<bool>("nozip")
76-
.WithDescription("Publish in Run-From-Zip package. Requires the app to have AzureWebJobsStorage setting defined.")
76+
.WithDescription("Turns the default Run-From-Package mode off.")
7777
.SetDefault(false)
7878
.Callback(f => RunFromZipDeploy = !f);
7979
Parser

0 commit comments

Comments
 (0)