1

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?

j0k
  • 22,600
  • 28
  • 79
  • 90
Fo.
  • 3,752
  • 7
  • 28
  • 44
  • possible duplicate of [How to set Capistrano's copy\_exclude to exclude all .svn folders](http://stackoverflow.com/questions/12848456/how-to-set-capistranos-copy-exclude-to-exclude-all-svn-folders) – j0k Sep 04 '13 at 20:37

1 Answers1

1

Add this to your deploy.rb file:

set :copy_exclude, ".svn/*"
Elnur Abdurrakhimov
  • 44,533
  • 10
  • 148
  • 133