You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2018/08/23 09:06:34 UTC

svn commit: r1838703 - /poi/trunk/build.xml

Author: centic
Date: Thu Aug 23 09:06:34 2018
New Revision: 1838703

URL: http://svn.apache.org/viewvc?rev=1838703&view=rev
Log:
Try to make target "docs" work on Windows again

Modified:
    poi/trunk/build.xml

Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1838703&r1=1838702&r2=1838703&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Thu Aug 23 09:06:34 2018
@@ -1753,7 +1753,11 @@ under the License.
     <target name="docs" depends="init, -check-forrest-installed, -check-docs, javadocs"
             unless="main.docs.notRequired" description="Builds the POI website">
 
-        <exec executable="${env.FORREST_HOME}/bin/forrest"/>
+        <exec executable="${env.FORREST_HOME}/bin/forrest" osfamily="unix"/>
+        <exec executable="cmd" osfamily="windows">
+            <arg value="/c"/>
+            <arg value="${env.FORREST_HOME}/bin/forrest.bat"/>
+        </exec>
 
         <echo>Broken links:</echo>
         <echo file="${build.site}/../tmp/brokenlinks.xml"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org