From: Daan De Meyer Date: Fri, 28 Mar 2025 19:26:33 +0000 (+0100) Subject: Do not pass --incremental=no explicitly to default tools tree X-Git-Tag: v26~285^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be06e7825e460bacbf3310a0f0a59396b6086358;p=thirdparty%2Fmkosi.git Do not pass --incremental=no explicitly to default tools tree It's the default value for --incremental=. --- diff --git a/mkosi/config.py b/mkosi/config.py index 28f27ee05..2e583b286 100644 --- a/mkosi/config.py +++ b/mkosi/config.py @@ -4851,7 +4851,6 @@ def finalize_default_tools(config: argparse.Namespace, *, resources: Path) -> Co f"--cache-only={main.cacheonly}", *([f"--workspace-directory={os.fspath(p)}"] if (p := main.workspace_dir) else []), *([f"--package-cache-directory={os.fspath(p)}"] if (p := main.package_cache_dir) else []), - "--incremental=no", *([f"--package={package}" for package in main.tools_tree_packages]), *([f"--package-directory={os.fspath(directory)}" for directory in main.tools_tree_package_directories]), # noqa: E501 *([f"--build-sources={tree}" for tree in main.build_sources]),