You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2014/01/02 19:32:06 UTC

svn commit: r1554876 - /commons/proper/exec/trunk/src/main/assembly/src.xml

Author: sebb
Date: Thu Jan  2 18:32:06 2014
New Revision: 1554876

URL: http://svn.apache.org/r1554876
Log:
Fix up so test shell scripts are marked executable in tar file

Modified:
    commons/proper/exec/trunk/src/main/assembly/src.xml

Modified: commons/proper/exec/trunk/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/main/assembly/src.xml?rev=1554876&r1=1554875&r2=1554876&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/main/assembly/src.xml (original)
+++ commons/proper/exec/trunk/src/main/assembly/src.xml Thu Jan  2 18:32:06 2014
@@ -36,6 +36,19 @@
         </fileSet>
         <fileSet>
             <directory>src</directory>
+            <excludes>
+                <!-- relative to directory -->
+                <exclude>test/scripts/*.sh</exclude>
+            </excludes>
+        </fileSet>
+        <fileSet>
+            <directory>src</directory>
+            <!-- Ensure that shell scripts are executable -->
+            <fileMode>775</fileMode>
+            <includes>
+                <!-- relative to directory -->
+                <include>test/scripts/*.sh</include>
+            </includes>
         </fileSet>
     </fileSets>
 </assembly>