From 34991bb44b8325909248df07d3ac5ad3c53e9e99 Mon Sep 17 00:00:00 2001 From: Adirelle Date: Wed, 17 Apr 2013 12:39:13 +0200 Subject: [PATCH] Updated the repository type value for use with Redmine 2.x. --- Redmine.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Redmine.pm b/Redmine.pm index bfb2b30..f992bf5 100644 --- a/Redmine.pm +++ b/Redmine.pm @@ -290,7 +290,7 @@ sub RedmineRepositoryType { my ($cfg, $parms, $arg) = @_; $arg = trim($arg); if($arg eq 'Subversion' || $arg eq 'Git') { - $cfg->{RepositoryType} = $arg; + $cfg->{RepositoryType} = 'Repository::'.$arg; } else { die "Invalid RedmineRepositoryType value: $arg, choose either Subversion or Git !"; }