Browse Source

Fixed #set_scm in reposman (#10837).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9675 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.0.0
Jean-Philippe Lang 12 years ago
parent
commit
a59257dfb6
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      extra/svn/reposman.rb

+ 1
- 1
extra/svn/reposman.rb View File

@@ -59,7 +59,7 @@ def read_key_from_file(filename)
end

def set_scm(scm)
$scm = v.capitalize
$scm = scm.capitalize
unless SUPPORTED_SCM.include?($scm)
log("Invalid SCM: #{$scm}\nValid SCM are: #{SUPPORTED_SCM.join(', ')}", :exit => true)
end

Loading…
Cancel
Save