Capistrano 2.0 preview with HTTP Auth
April 30th, 2007
If you’re migrating a Capistrano1.x site, over to Capistrano 2, and your SVN repository happens to be behind HTTP authentication, then you probably already know about using this..
1 2 |
set :svn_username, "username" set :svn_password, "password" |
When you switch to Capistrano 2, make sure that you change those :svn_ arguments to :scm_*, eg..
1 2 |
set :scm_username, "username" set :scm_password, "password" |
Happy Deployment!