Change subversion adapter to not cache authentication and run non interactively

#3424

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2819 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Eric Davis 2009-07-10 03:24:46 +00:00
parent a9ee946053
commit 1a9942ba99
1 changed files with 1 additions and 0 deletions

View File

@ -225,6 +225,7 @@ module Redmine
str = ''
str << " --username #{shell_quote(@login)}" unless @login.blank?
str << " --password #{shell_quote(@password)}" unless @login.blank? || @password.blank?
str << " --no-auth-cache --non-interactive"
str
end
end