From 80506eb0f0b7446a9c8c8e8b7ebbfbceaa8b0272 Mon Sep 17 00:00:00 2001 From: Austin Bozowski Date: Thu, 26 May 2022 19:36:45 +0000 Subject: [PATCH] Help messages --- examples/chef/chef.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/chef/chef.py b/examples/chef/chef.py index 6fb07d8c846e4c..90fa678028dcf7 100755 --- a/examples/chef/chef.py +++ b/examples/chef/chef.py @@ -178,10 +178,10 @@ def main(argv: Sequence[str]) -> None: dest="validate_zzz", action="store_true") parser.add_option("", "--use_zzz", help="Use pre generated output from the ZAP tool found in the zzz_generated folder. Used to decrease execution time of CI/CD jobs", dest="use_zzz", action="store_true") - parser.add_option("", "--build_all", help="Builds all chef examples for the specified platform and collates artifacts. Uses --use_zzz. Chef exits after completion.", + parser.add_option("", "--build_all", help="For use in CD only. Builds and bundles all chef examples for the specified platform. Uses --use_zzz. Chef exits after completion.", dest="build_all", action="store_true") parser.add_option( - "", "--ci", help="Builds Chef examples defined in chef_util.ci_allowlist. Uses -use_zzz. Uses specified target. Chef exits after completion.", dest="ci", action="store_true") + "", "--ci", help="Builds Chef examples defined in chef_util.ci_allowlist. Uses --use_zzz. Uses specified target from -t. Chef exits after completion.", dest="ci", action="store_true") options, _ = parser.parse_args(argv)