]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tools/update-distro-hash: Fix path
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 10 Jul 2024 12:34:32 +0000 (14:34 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 10 Jul 2024 16:52:29 +0000 (18:52 +0200)
tools/update-distro-hash.py

index 16ed2e707a21dc16927f098866e60c1a3bf3677c..fd23078aecb2f92b578e59c40dd0e126c69c6910 100755 (executable)
@@ -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()