Skip to content

Commit

Permalink
Merge pull request #58 from yoichi/JENKINS-4613
Browse files Browse the repository at this point in the history
[FIXED JENKINS-4613]compare hostname in case-insensitive manner
  • Loading branch information
kutzi committed Dec 15, 2013
2 parents 05651e1 + 04d1205 commit 32601b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/scm/subversion/UpdateUpdater.java
Expand Up @@ -87,7 +87,7 @@ protected SvnCommandToUse getSvnCommandToUse() throws IOException {
SVNInfo svnkitInfo = parseSvnInfo(module);
SvnInfo svnInfo = new SvnInfo(svnkitInfo);

String url = location.getURL();
String url = location.getSVNURL().toString();

if (!svnInfo.url.equals(url)) {
if (isSameRepository(location, svnkitInfo)) {
Expand Down

0 comments on commit 32601b2

Please sign in to comment.