This is an automated email from the ASF dual-hosted git repository. andor pushed a commit to branch branch-3.5 in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.5 by this push: new 75f9a1f ZOOKEEPER-3265: Fix fileset to match shell scripts and python files i… 75f9a1f is described below commit 75f9a1ffa6bed2effa5588318423479c566e73a7 Author: Zsombor Gegesy <zsom...@apache.org> AuthorDate: Mon Feb 4 17:08:49 2019 +0100 ZOOKEEPER-3265: Fix fileset to match shell scripts and python files i… …n contrib directory. Author: Zsombor Gegesy <zsom...@apache.org> Reviewers: an...@apache.org Closes #798 from gzsombor/ZOOKEEPER-3265-master (cherry picked from commit 190df6abd661dfd5b07bc0657b6f8b0b14f86a8c) Signed-off-by: Andor Molnar <an...@cloudera.com> --- build.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.xml b/build.xml index d9dcbf4..9d8025c 100644 --- a/build.xml +++ b/build.xml @@ -1007,8 +1007,9 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant"> <chmod perm="ugo+x" type="file" parallel="false"> <fileset dir="${dist.dir}/bin"/> <fileset dir="${dist.dir}/sbin"/> - <fileset dir="${dist.dir}/src/zookeeper-contrib/"> - <include name="*/bin/*" /> + <fileset dir="${dist.dir}/contrib/"> + <include name="**/*.sh" /> + <include name="**/*.py" /> </fileset> </chmod> </target>