Author: cnauroth
Date: Sat Oct 3 21:02:32 2015
New Revision: 1706628
URL: http://svn.apache.org/viewvc?rev=1706628&view=rev
Log:
ZOOKEEPER-2268: Zookeeper doc creation fails on windows (Arshad Mohammad via cnauroth)
Modified:
zookeeper/trunk/CHANGES.txt
zookeeper/trunk/build.xml
Modified: zookeeper/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/zookeeper/trunk/CHANGES.txt?rev=1706628&r1=1706627&r2=1706628&view=diff
==============================================================================
--- zookeeper/trunk/CHANGES.txt (original)
+++ zookeeper/trunk/CHANGES.txt Sat Oct 3 21:02:32 2015
@@ -181,6 +181,9 @@ BUGFIXES:
ZOOKEEPER-2244: On Windows zookeeper fails to restart (Arshad Mohammad via rakeshr)
+ ZOOKEEPER-2268: Zookeeper doc creation fails on windows
+ (Arshad Mohammad via cnauroth)
+
IMPROVEMENTS:
ZOOKEEPER-1660 Documentation for Dynamic Reconfiguration (Reed Wanderman-Milne via shralex)
Modified: zookeeper/trunk/build.xml
URL: http://svn.apache.org/viewvc/zookeeper/trunk/build.xml?rev=1706628&r1=1706627&r2=1706628&view=diff
==============================================================================
--- zookeeper/trunk/build.xml (original)
+++ zookeeper/trunk/build.xml Sat Oct 3 21:02:32 2015
@@ -480,7 +480,7 @@ xmlns:maven="antlib:org.apache.maven.art
<condition property="forrest.exec" value="forrest.bat" else="forrest">
<os family="windows"/>
</condition>
- <exec dir="${docs.src}" executable="${forrest.home}/bin/forrest"
+ <exec dir="${docs.src}" executable="${forrest.home}/bin/${forrest.exec}"
failonerror="true">
</exec>
<copy todir="${docs.dir}">
|