Capifony: How to remove all .svn directories when deploying via copy?

145 views Asked by At

I would like to add a post deployment command for Capifony to delete all the .svn directories after a fresh deployment but I can't find any examples or documentation. How is this done?

1

There are 1 answers

2
Elnur Abdurrakhimov On BEST ANSWER

Add this to your deploy.rb file:

set :copy_exclude, ".svn/*"