From 30c9dbcdeb82ddecf20bddd24faed64a73ff502a Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sun, 15 Mar 2015 17:49:40 +1000 Subject: repo-add: remove duplication finding old package details The information needed to create a delta entry and remove the old package from the filesystem are the same. Signed-off-by: Allan McRae --- scripts/repo-add.sh.in | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'scripts/repo-add.sh.in') diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in index c16295be..75121361 100644 --- a/scripts/repo-add.sh.in +++ b/scripts/repo-add.sh.in @@ -334,15 +334,7 @@ db_write_entry() { return 0; fi else - if (( DELTA )); then - pkgentry=$(find_pkgentry "$pkgname") - if [[ -n $pkgentry ]]; then - local oldfilename=$(grep -A1 FILENAME "$pkgentry/desc" | tail -n1) - local oldfile="$(dirname "$1")/$oldfilename" - fi - fi - if (( RMEXISTING )); then - # gather information needed to remove old file + if (( DELTA || RMEXISTING )); then pkgentry=$(find_pkgentry "$pkgname") if [[ -n $pkgentry ]]; then local oldfilename="$(sed -n '/^%FILENAME%$/ {n;p;q;}' "$pkgentry/desc")" -- cgit v1.2.3-54-g00ecf