You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by yo...@apache.org on 2006/12/17 23:28:31 UTC

svn commit: r488066 - /incubator/solr/branches/branch-1.1/build.xml

Author: yonik
Date: Sun Dec 17 14:28:31 2006
New Revision: 488066

URL: http://svn.apache.org/viewvc?view=rev&rev=488066
Log:
set executable bit on scripts in archives

Modified:
    incubator/solr/branches/branch-1.1/build.xml

Modified: incubator/solr/branches/branch-1.1/build.xml
URL: http://svn.apache.org/viewvc/incubator/solr/branches/branch-1.1/build.xml?view=diff&rev=488066&r1=488065&r2=488066
==============================================================================
--- incubator/solr/branches/branch-1.1/build.xml (original)
+++ incubator/solr/branches/branch-1.1/build.xml Sun Dec 17 14:28:31 2006
@@ -412,7 +412,11 @@
       <tarfileset dir="."
         prefix="${fullnamever}"
         includes="LICENSE.txt NOTICE.txt *.txt *.xml lib/** src/** example/**"
-        excludes="**/data/ **/logs/ **/classes/" />
+        excludes="**/data/ **/logs/ **/classes/ **/*.sh **/bin/ src/scripts/" />
+      <tarfileset dir="."
+        mode="755"
+        prefix="${fullnamever}"
+        includes="**/*.sh **/bin/ src/scripts/" />
       <tarfileset dir="."
         prefix="${fullnamever}"
         includes="dist/*.jar dist/*.war" />
@@ -431,7 +435,12 @@
 
     <zip destfile="${dist}/${fullnamever}.zip">
       <zipfileset dir="${dest}/${fullnamever}" 
-        prefix="${fullnamever}" />
+        prefix="${fullnamever}" 
+        excludes="**/*.sh **/bin/ src/scripts/" />
+      <zipfileset dir="${dest}/${fullnamever}" 
+        prefix="${fullnamever}" 
+        includes="**/*.sh **/bin/ src/scripts/"
+        filemode="755" />
     </zip>
     <solr-checksum file="${dist}/${fullnamever}.zip"/>