mirror of https://github.com/apache/maven.git
Resolving: MNG-1155...Applied patch for OS X path of javadoc.
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@315040 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7df3803ef7
commit
2bc772a524
|
@ -885,6 +885,10 @@ public class JavadocReport
|
|||
{
|
||||
javadocExe = new File( SystemUtils.getJavaHome() + "/../sh", javadocCommand );
|
||||
}
|
||||
else if ( SystemUtils.IS_OS_MAC_OSX )
|
||||
{
|
||||
javadocExe = new File( SystemUtils.getJavaHome() + "/bin", javadocCommand );
|
||||
}
|
||||
else
|
||||
{
|
||||
javadocExe = new File( SystemUtils.getJavaHome() + "/../bin", javadocCommand );
|
||||
|
|
Loading…
Reference in New Issue