From: Daan De Meyer Date: Wed, 10 Jul 2024 12:34:32 +0000 (+0200) Subject: tools/update-distro-hash: Fix path X-Git-Tag: v257-rc1~926^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfea7a8d2655988e30c0d8ca56a1c7aeefc47d80;p=thirdparty%2Fsystemd.git tools/update-distro-hash: Fix path --- diff --git a/tools/update-distro-hash.py b/tools/update-distro-hash.py index 16ed2e707a2..fd23078aecb 100755 --- a/tools/update-distro-hash.py +++ b/tools/update-distro-hash.py @@ -69,7 +69,7 @@ def update_distro(args, distro: str): print(f"+ {shlex.join(cmd)}") changes = subprocess.check_output(cmd, text=True).strip() - conf_dir = Path('mkosi.images/system/mkosi.conf.d') + conf_dir = Path('mkosi.conf.d') files = conf_dir.glob('*/*.conf') for file in files: s = file.read_text()