5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-17 01:11:07 +08:00

Make sure files under testdata/hive/bin keep executable mode during packing

git-svn-id: https://svn.apache.org/repos/asf/incubator/sqoop/branches/branch-1.4.0@1197869 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Bilung Lee 2011-11-05 02:18:00 +00:00
parent db378b1855
commit e9d0bede1b

View File

@ -453,11 +453,13 @@
<tar compression="gzip" longfile="gnu" destfile="${tar.file}">
<tarfileset dir="${build.dir}" mode="664">
<exclude name="${artifact.name}/bin/*" />
<exclude name="${artifact.name}/testdata/hive/bin/*" />
<exclude name="${artifact.name}/**/*.sh" />
<include name="${artifact.name}/**" />
</tarfileset>
<tarfileset dir="${build.dir}" mode="755">
<include name="${artifact.name}/bin/*" />
<include name="${artifact.name}/testdata/hive/bin/*" />
<include name="${artifact.name}/**/*.sh" />
</tarfileset>
</tar>