Skip to content

Commit

Permalink
Help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed May 26, 2022
1 parent c1724ec commit 80506eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/chef/chef.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 80506eb

Please sign in to comment.