From: John Crispin Date: Sat, 23 May 2015 15:29:06 +0000 (+0000) Subject: scripts/feeds: Delete package/feeds folder in the clean procedure to prevent dangling... X-Git-Tag: reboot~3011 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=803ebd2725f0f661e3981fad56180832e88b6fbd scripts/feeds: Delete package/feeds folder in the clean procedure to prevent dangling links. 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 --- 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"); } );