This is an automated email from the ASF dual-hosted git repository.

andor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 190df6a  ZOOKEEPER-3265: Fix fileset to match shell scripts and python 
files i…
190df6a is described below

commit 190df6abd661dfd5b07bc0657b6f8b0b14f86a8c
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
---
 build.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/build.xml b/build.xml
index 26810ca..61f0bb0 100644
--- a/build.xml
+++ b/build.xml
@@ -1014,8 +1014,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>

Reply via email to