Search code examples
capifony

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


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?


Solution

  • Add this to your deploy.rb file:

    set :copy_exclude, ".svn/*"