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?
Asked
Active
Viewed 132 times
1 Answers
1
Add this to your deploy.rb
file:
set :copy_exclude, ".svn/*"

Elnur Abdurrakhimov
- 44,533
- 10
- 148
- 133
-
1
-
j0k, thank you. Your solution is correct for completely excluding the .svn directories. – Fo. Sep 04 '13 at 22:05