From 64bd2c86556c19788c1dd008e5de90245f29c4af Mon Sep 17 00:00:00 2001 From: Ark74 Date: Mon, 25 Aug 2025 23:59:05 -0600 Subject: [PATCH] config: add notice to remove_patch function. --- helpers/config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helpers/config b/helpers/config index a1b0ab8..2f07c55 100755 --- a/helpers/config +++ b/helpers/config @@ -232,7 +232,7 @@ package(){ # Make sure the series file is formated correctly after removals if [ -f debian/patches/series ]; then - grep -q [a-z] debian/patches/series || echo -n > debian/patches/series + grep -q [a-z] debian/patches/series || : > debian/patches/series fi if [ 1$QUILT != 1skip ]; then @@ -303,6 +303,7 @@ fi } remove_patch(){ + echo "> Removing patch $1 in progress..." rm "$(find */patches -name "$1")" sed -i "/$1/d" debian/patches/series }