export instead of checkout in Capistrano 2
A quick PSA: In capistrano 2 there's a change to the way you get svn to export instead of checkout during a deploy.
Old way:
set :checkout, 'export'
New way:
set :deploy_via, :export
It doesn't amount to much, but it sure is fun...
A quick PSA: In capistrano 2 there's a change to the way you get svn to export instead of checkout during a deploy.
Old way:
set :checkout, 'export'
New way:
set :deploy_via, :export
at 10:52 PM
Labels: capistrano, psa, Rails
2 comments:
Ah; I followed some old instructions and was wondering why I still had .svn directories on my server.
This was very helpful. Thank you!
Very helpful - thanks!
Post a Comment