From: Luca Boccassi Date: Fri, 19 Dec 2025 11:33:13 +0000 (+0000) Subject: tools: use -f in mkosi summary in fetch-distro.py X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2791af18e41d7410023943197ed4470f865cb5fd;p=thirdparty%2Fsystemd.git tools: use -f in mkosi summary in fetch-distro.py $ ./tools/fetch-distro.py -u fedora + mkosi --json -d fedora summary ‣ Ignoring --distribution from the CLI. Run with -f to rebuild the image with this setting Follow-up for 35f6e5c3278bda935b67249a9ee61e9f6252bb6f --- diff --git a/tools/fetch-distro.py b/tools/fetch-distro.py index 2dad51be24c..4387af83974 100755 --- a/tools/fetch-distro.py +++ b/tools/fetch-distro.py @@ -35,7 +35,7 @@ def parse_args(): return p.parse_args() def read_config(distro: str): - cmd = ['mkosi', '--json', '-d', distro, 'summary'] + cmd = ['mkosi', '--json', '-d', distro, '-f', 'summary'] if args.profile: cmd += ['--profile', args.profile] print(f"+ {shlex.join(cmd)}")