You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2016/07/10 18:08:14 UTC

svn commit: r1752101 - /maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/deploy/AbstractDeployMojo.java

Author: michaelo
Date: Sun Jul 10 18:08:14 2016
New Revision: 1752101

URL: http://svn.apache.org/viewvc?rev=1752101&view=rev
Log:
[MSITE-654] Appending a slash to the tepository URL makes deploying to GitHub impossible

Submitted-by: Rajiv Jain

This closes #89

Modified:
    maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/deploy/AbstractDeployMojo.java

Modified: maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/deploy/AbstractDeployMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/deploy/AbstractDeployMojo.java?rev=1752101&r1=1752100&r2=1752101&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/deploy/AbstractDeployMojo.java (original)
+++ maven/plugins/trunk/maven-site-plugin/src/main/java/org/apache/maven/plugins/site/deploy/AbstractDeployMojo.java Sun Jul 10 18:08:14 2016
@@ -169,7 +169,7 @@ public abstract class AbstractDeployMojo
             return;
         }
 
-        deployTo( new BugFixedRepository( getDeploySite().getId(), appendSlash( getDeploySite().getUrl() ) ) );
+        deployTo( new BugFixedRepository( getDeploySite().getId(), getDeploySite().getUrl() ) );
     }
 
     /**