From db7867833a93d4fe85fe86c69fc9dc8ad3e6d267 Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Mon, 20 Jan 2025 20:54:53 +0100 Subject: [PATCH] osbuild/cli: mention sources in cache/store help The cache/store directory is also used to keep sources. Mention that in the description of the option. --- 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 4eb57cd9..1fa1f6a0 100644 --- a/osbuild/main_cli.py +++ b/osbuild/main_cli.py @@ -71,7 +71,7 @@ def parse_arguments(sys_argv: List[str]) -> argparse.Namespace: help="json file containing the manifest that should be built, or a '-' to read from stdin") parser.add_argument("--store", "--cache", metavar="DIRECTORY", type=os.path.abspath, default=".osbuild", - help="directory where intermediary os trees are stored") + help="directory where sources and intermediary os trees are stored") parser.add_argument("-l", "--libdir", metavar="DIRECTORY", type=os.path.abspath, default="/usr/lib/osbuild", help="directory containing stages, assemblers, and the osbuild library") parser.add_argument("--cache-max-size", metavar="SIZE", type=parse_size, default=None,