Skip to content

Commit

Permalink
fix(rockcraft_lpci_build): switch help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdcordeiro committed Apr 9, 2024
1 parent 9e0a3fd commit adcb431
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rockcraft_lpci_build/rockcraft_lpci_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,14 @@ def cli_args() -> argparse.ArgumentParser:
parser.add_argument(
"--allow-build-failures",
action="store_true",
help=str("acknowledge that uploaded project will be publicly available"),
help=str(
"for multi-arch builds, continue even if some builds fail"
),
)
parser.add_argument(
"--launchpad-accept-public-upload",
action="store_true",
help=str("for multi-arch builds, continue even if some builds fail"),
help=str("acknowledge that uploaded project will be publicly available"),
)

return parser
Expand Down

0 comments on commit adcb431

Please sign in to comment.