From 44906d2119208335402cb3f4fd62a4bb38258231 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Wed, 11 Feb 2026 02:09:58 +0000
Subject: [PATCH] Remove not unlink
---
src/archrepobuild/repo.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/archrepobuild/repo.py b/src/archrepobuild/repo.py
index d6f342b..205dc4e 100644
--- a/src/archrepobuild/repo.py
+++ b/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:
--
Gitblit v1.10.0