main_cli: refine the --stage-timeout help text

Clarify this timeout is per stage, not per image.
This commit is contained in:
Christian Kellner 2021-12-06 16:15:02 +00:00 committed by mergify[bot]
parent bd5b60a857
commit 60066ee927

View file

@ -81,7 +81,7 @@ def parse_arguments(sys_argv):
parser.add_argument("--inspect", action="store_true",
help="return the manifest in JSON format including all the ids")
parser.add_argument("--stage-timeout", type=int, default=None,
help="set the timeout in seconds for building an image")
help="set the maximal time (in seconds) each stage is allowed to run")
return parser.parse_args(sys_argv[1:])