diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-07-10 14:34:32 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-07-10 18:52:29 +0200 |
commit | dfea7a8d2655988e30c0d8ca56a1c7aeefc47d80 (patch) | |
tree | f84a7ba70df6d310f8070ab6c38a95970345d3f5 /tools | |
parent | TEST-06-SELINUX: Various fixes (diff) | |
download | systemd-dfea7a8d2655988e30c0d8ca56a1c7aeefc47d80.tar.xz systemd-dfea7a8d2655988e30c0d8ca56a1c7aeefc47d80.zip |
tools/update-distro-hash: Fix path
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/update-distro-hash.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/update-distro-hash.py b/tools/update-distro-hash.py index 16ed2e707a..fd23078aec 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() |