summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2024-07-10 14:34:32 +0200
committerDaan De Meyer <daan.j.demeyer@gmail.com>2024-07-10 18:52:29 +0200
commitdfea7a8d2655988e30c0d8ca56a1c7aeefc47d80 (patch)
treef84a7ba70df6d310f8070ab6c38a95970345d3f5 /tools
parentTEST-06-SELINUX: Various fixes (diff)
downloadsystemd-dfea7a8d2655988e30c0d8ca56a1c7aeefc47d80.tar.xz
systemd-dfea7a8d2655988e30c0d8ca56a1c7aeefc47d80.zip
tools/update-distro-hash: Fix path
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update-distro-hash.py2
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()