This is an automated email from the ASF dual-hosted git repository.

gboue pushed a commit to branch fix-it-failure
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git


The following commit(s) were added to refs/heads/fix-it-failure by this push:
     new ac5e166  verify that issue was windows lowercase drive letter
ac5e166 is described below

commit ac5e16602fd347a0c08114d5b57a80882931f388
Author: Guillaume BouĂ© <[email protected]>
AuthorDate: Fri Aug 17 22:48:51 2018 +0200

    verify that issue was windows lowercase drive letter
---
 src/it/projects/detectLinks/verify.bsh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/it/projects/detectLinks/verify.bsh 
b/src/it/projects/detectLinks/verify.bsh
index 3669ab0..145ebb4 100644
--- a/src/it/projects/detectLinks/verify.bsh
+++ b/src/it/projects/detectLinks/verify.bsh
@@ -97,9 +97,9 @@ try
         System.err.println( "module2 -linkoffline module1 not added: " + 
options2 );
         return false;
     }
-    if ( !contentOptions2.substring( linkoffline2 ).contains( 
apidocs1.getAbsolutePath().replaceAll( "\\\\", "/" ) ) )
+    if ( !contentOptions2.substring( linkoffline2 ).contains( 
apidocs1.getCanonicalPath().replaceAll( "\\\\", "/" ) ) )
     {
-        System.err.println( apidocs1.getAbsolutePath().replaceAll( "\\\\", "/" 
) + " not added: " + options2 );
+        System.err.println( apidocs1.getCanonicalPath().replaceAll( "\\\\", 
"/" ) + " not added: " + options2 );
         return false;
     }
     int link2 = contentOptions2.indexOf( "-link" );

Reply via email to