From 6dff249c733c81af9165b6f436047bd33ce88f68 Mon Sep 17 00:00:00 2001 From: Raphael Date: Wed, 15 Sep 2010 09:43:59 -0700 Subject: [PATCH] Check for the presence of a password in the deploy config --- config/deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy.rb b/config/deploy.rb index f0bf1e5c2..0394af864 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -30,7 +30,7 @@ set :deploy_to, all['deploy_to'] set :scm, :git set :user, all['user'] #set :user, ARGV[0] -set :password, all['password'] +set :password, all['password'] if all['password'] set :scm_verbose, true set :repository, all['repo'] set :branch, all['branch']