Repository: incubator-wave Updated Branches: refs/heads/master 51e06f296 -> b77f7f5e0
Fixes server.config generation for release-bin. Project: http://git-wip-us.apache.org/repos/asf/incubator-wave/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-wave/commit/b77f7f5e Tree: http://git-wip-us.apache.org/repos/asf/incubator-wave/tree/b77f7f5e Diff: http://git-wip-us.apache.org/repos/asf/incubator-wave/diff/b77f7f5e Branch: refs/heads/master Commit: b77f7f5e06cba954b85f3deffbdb11885b9aa538 Parents: 51e06f2 Author: Yuri Zelikov <[email protected]> Authored: Sat Jun 28 20:21:17 2014 +0300 Committer: Yuri Zelikov <[email protected]> Committed: Sat Jun 28 20:21:17 2014 +0300 ---------------------------------------------------------------------- build.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-wave/blob/b77f7f5e/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 4c1b525..73958a1 100644 --- a/build.xml +++ b/build.xml @@ -870,7 +870,7 @@ <target name="release-bin" depends="compile-gwt, dist-server, dist-export-import" description="Creates unsigned tar+zip for server binary release"> <delete file="${dist.dir}/${release.bin.path}.tar.bz2"/> <delete file="${dist.dir}/${release.bin.path}.zip"/> - <ant antfile="server-config.xml" /> + <antcall target="gen-server-config"/> <copy file="LICENSE.bin" tofile="LICENSE" /> <copy file="NOTICE.bin" tofile="NOTICE" /> <tar destfile="${dist.dir}/${release.bin.path}.tar" longfile="gnu"> @@ -923,6 +923,10 @@ <delete file="NOTICE" /> </target> + <target name="gen-server-config"> + <ant antfile="server-config.xml" /> + </target> + <!-- TODO: re-use these when the api code is useful again --> <target name="release-robot-client-api" depends="dist-libraries" description="Creates a zip for the java robot client release"> <delete file="${dist.dir}/${release.robot.name}"/>
