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 <martin.strbacka@nic.cz>

SVN-Revision: 45738
v19.07.3_mercusys_ac12_duma
John Crispin 9 years ago
parent a2d0d58a8e
commit 803ebd2725

@ -793,7 +793,7 @@ my %commands = (
'uninstall' => \&uninstall,
'feed_config' => \&feed_config,
'clean' => sub {
system("rm -rf feeds");
system("rm -rf ./feeds ./package/feeds");
}
);

Loading…
Cancel
Save