This is an automated email from the ASF dual-hosted git repository.
andor pushed a commit to branch branch-3.4
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.4 by this push:
new 1dae62b ZOOKEEPER-3265: Fix fileset to match shell scripts and python
files i…
1dae62b is described below
commit 1dae62bb2c622197a459738caa1c20c40ccd1ad1
Author: Zsombor Gegesy <[email protected]>
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 <[email protected]>
Reviewers: [email protected]
Closes #798 from gzsombor/ZOOKEEPER-3265-master
(cherry picked from commit 190df6abd661dfd5b07bc0657b6f8b0b14f86a8c)
Signed-off-by: Andor Molnar <[email protected]>
---
build.xml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/build.xml b/build.xml
index d89ab92..712c761 100644
--- a/build.xml
+++ b/build.xml
@@ -973,8 +973,9 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle">
<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>