1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-06 17:18:12 +03:00

tools/update-distro-hash: Fix path

(cherry picked from commit dfea7a8d26)
This commit is contained in:
Daan De Meyer 2024-07-10 14:34:32 +02:00
parent 54eb9b9301
commit fef4746218

View File

@ -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()