From 34b0146a7430c3eec2121694f4c11c1e344ec4e1 Mon Sep 17 00:00:00 2001 From: "Stephen Weatherford (MSFT)" Date: Mon, 16 Sep 2024 12:46:26 -0700 Subject: [PATCH] Remove preview flag from --wish-source parameter of "az bicep publish" --- src/azure-cli/azure/cli/command_modules/resource/_params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azure-cli/azure/cli/command_modules/resource/_params.py b/src/azure-cli/azure/cli/command_modules/resource/_params.py index e60eaea1976..0755eec520f 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/_params.py +++ b/src/azure-cli/azure/cli/command_modules/resource/_params.py @@ -819,7 +819,7 @@ def load_arguments(self, _): c.argument('target', arg_type=CLIArgumentType(options_list=['--target', '-t'], help="The target location where the Bicep module will be published.")) c.argument('documentationUri', arg_type=CLIArgumentType(options_list=['--documentationUri'], help="The documentation uri of the Bicep module."), deprecate_info=c.deprecate(target='--documentationUri', redirect='--documentation-uri')) c.argument('documentation_uri', arg_type=CLIArgumentType(options_list=['--documentation-uri', '-d'], help="The documentation uri of the Bicep module.")) - c.argument('with_source', options_list=['--with-source'], action='store_true', help="Publish source code with the module.", is_preview=True) + c.argument('with_source', options_list=['--with-source'], action='store_true', help="Publish source code with the module.") c.argument('force', arg_type=bicep_force_type, help="Allow overwriting an existing Bicep module version.") with self.argument_context('bicep install') as c: