From aa4b05437fcd2007c2967850c95988633f08caf2 Mon Sep 17 00:00:00 2001 From: Mats Estensen Date: Tue, 1 Feb 2022 17:21:17 +0100 Subject: [PATCH] fix: remove unused cli option --no-summary Fixes #5828 --- src/Bicep.Cli/Commands/RootCommand.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Bicep.Cli/Commands/RootCommand.cs b/src/Bicep.Cli/Commands/RootCommand.cs index e0fdba4e2f2..9bb448bbaa1 100644 --- a/src/Bicep.Cli/Commands/RootCommand.cs +++ b/src/Bicep.Cli/Commands/RootCommand.cs @@ -74,14 +74,12 @@ Builds a .bicep file. Options: --outdir Saves the output at the specified directory. --outfile Saves the output as the specified file path. - --no-summary Omits the summary at the end of the build. --stdout Prints the output to stdout. --no-restore Builds the bicep file without restoring external modules. Examples: bicep build file.bicep bicep build file.bicep --stdout - bicep build file.bicep --no-summary bicep build file.bicep --outdir dir1 bicep build file.bicep --outfile file.json bicep build file.bicep --no-restore