From 803ebd2725f0f661e3981fad56180832e88b6fbd Mon Sep 17 00:00:00 2001 From: John Crispin Date: Sat, 23 May 2015 15:29:06 +0000 Subject: [PATCH] scripts/feeds: Delete package/feeds folder in the clean procedure to prevent dangling links. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Hello, if you run: ./scripts/feeds clean It removes ./feeds folder but not ./package/feeds/ which is full of dangling links then. This patch fixes it. Best Regards, Martin Strbačka Signed-off-by: Martin Strbacka SVN-Revision: 45738 --- scripts/feeds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/feeds b/scripts/feeds index 89cb5a22c5..a6be9cca22 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -793,7 +793,7 @@ my %commands = ( 'uninstall' => \&uninstall, 'feed_config' => \&feed_config, 'clean' => sub { - system("rm -rf feeds"); + system("rm -rf ./feeds ./package/feeds"); } ); -- 2.30.2