Changeset 7694
- Timestamp:
- 09/30/07 14:50:32 (1 year ago)
- Files:
-
- tools/capistrano/CHANGELOG (modified) (1 diff)
- tools/capistrano/lib/capistrano/recipes/deploy/scm/subversion.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/CHANGELOG
r7393 r7694 1 *SVN* 2 3 * Use the --password switch for subversion by default, but add :scm_prefer_prompt variable (defaults to false) [Jamis Buck] 4 5 1 6 *2.0.100 (2.1 Preview 1)* September 1, 2007 2 7 tools/capistrano/lib/capistrano/recipes/deploy/scm/subversion.rb
r7384 r7694 82 82 private 83 83 84 # If a username is configured for the SCM, return the =command-line84 # If a username is configured for the SCM, return the command-line 85 85 # switches for that. Note that we don't need to return the password 86 86 # switch, since Capistrano will check for that prompt in the output … … 90 90 return "" unless username 91 91 result = "--username #{variable(:scm_username)} " 92 result << "--password #{variable(:scm_password)} " unless variable(:scm_prefer_prompt) 92 93 result << "--no-auth-cache " unless variable(:scm_auth_cache) 93 94 result