Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cleaning up Magento Modman symlinks

Tags:

magento

I have a made a mess of my Magento installation using modman and now I have hundreds of unused symlinks scattered over the source code.

How can I remove these symlinks and clean up?

like image 544
Marty Wallace Avatar asked Jun 03 '12 19:06

Marty Wallace


1 Answers

If you want to simply remove all symlinks run the following from the web root:

 find . -type l -exec rm {} \;

If you want to remove all symlinks and have have modman re-create only those that should be there then:

modman repair
like image 154
Drew Hunter Avatar answered Oct 05 '22 23:10

Drew Hunter