From 343262e683c9c4f65caa20995504baa43256fd23 Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Thu, 4 Sep 2008 00:07:38 +0200 Subject: [PATCH] BugFix: pakfire try to remove the files of the new pakage at update --- src/pakfire/lib/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pakfire/lib/functions.sh b/src/pakfire/lib/functions.sh index 3a4191ea8..1cc4d810a 100644 --- a/src/pakfire/lib/functions.sh +++ b/src/pakfire/lib/functions.sh @@ -30,8 +30,8 @@ extract_files() { remove_files() { echo "Removing files..." - for i in $(cat /opt/pakfire/tmp/ROOTFILES); do - rm -rfv /${i} + for i in $(cat /opt/pakfire/db/rootfiles/${NAME}); do + rm -rfv /${i} done echo "...Finished." } -- 2.39.2