浏览代码

Try to make target "docs" work on Windows again

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1838703 13f79535-47bb-0310-9956-ffa450edef68
pull/109/merge
Dominik Stadler 5 年前
父节点
当前提交
b2e81ecad9
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5
    1
      build.xml

+ 5
- 1
build.xml 查看文件

@@ -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"/>

正在加载...
取消
保存