From 0c162092984cb731d5c40aad812f1c56c680c04a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Guzm=C3=A1n?= <ark@switnet.org> Date: Thu, 16 Feb 2023 07:49:38 +0000 Subject: [PATCH] config: enable multiple parent directory for remove_patch function --- helpers/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/config b/helpers/config index a0c6525dd..c0f75e319 100755 --- a/helpers/config +++ b/helpers/config @@ -262,7 +262,7 @@ fi } remove_patch(){ - rm "$(find debian/patches -name "$1")" + rm "$(find */patches -name "$1")" sed -i "/$1/d" debian/patches/series } -- GitLab