mirror of https://github.com/Chizi123/Arch-autobuild-repo.git

Joel Grunbaum
20 hours ago 44906d2119208335402cb3f4fd62a4bb38258231
Remove not unlink
1 files modified
4 ■■■■ changed files
src/archrepobuild/repo.py 4 ●●●● patch | view | raw | blame | history
src/archrepobuild/repo.py
@@ -185,11 +185,11 @@
        removed = 0
        for f in to_remove:
            f.unlink()
            f.remove()
            # Also remove signature
            sig = f.with_suffix(f.suffix + ".sig")
            if sig.exists():
                sig.unlink()
                sig.remove()
            removed += 1
        if removed: