From 60066ee9279f6f6bab61cf3f67e80da9177c15a9 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Mon, 6 Dec 2021 16:15:02 +0000 Subject: [PATCH] main_cli: refine the `--stage-timeout` help text Clarify this timeout is per stage, not per image. --- osbuild/main_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osbuild/main_cli.py b/osbuild/main_cli.py index e44aadb7..0a353e9c 100644 --- a/osbuild/main_cli.py +++ b/osbuild/main_cli.py @@ -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:])