You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by ja...@apache.org on 2015/02/12 21:32:37 UTC

sqoop git commit: SQOOP-2102: Binary tarball missing executable bit on sqoop2-* files

Repository: sqoop
Updated Branches:
  refs/heads/sqoop2 f826c50f2 -> 072b33d48


SQOOP-2102: Binary tarball missing executable bit on sqoop2-* files

(Szehon Ho via Jarek Jarcec Cecho)


Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/072b33d4
Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/072b33d4
Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/072b33d4

Branch: refs/heads/sqoop2
Commit: 072b33d487c7ac2d393b32fde492fe473aef3090
Parents: f826c50
Author: Jarek Jarcec Cecho <ja...@apache.org>
Authored: Thu Feb 12 12:31:32 2015 -0800
Committer: Jarek Jarcec Cecho <ja...@apache.org>
Committed: Thu Feb 12 12:31:32 2015 -0800

----------------------------------------------------------------------
 dist/pom.xml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sqoop/blob/072b33d4/dist/pom.xml
----------------------------------------------------------------------
diff --git a/dist/pom.xml b/dist/pom.xml
index e0bf0d0..f1d671e 100644
--- a/dist/pom.xml
+++ b/dist/pom.xml
@@ -202,9 +202,11 @@ limitations under the License.
                     <tar destfile="target/sqoop-${project.version}-bin-hadoop${hadoop.version}.tar.gz" compression="gzip">
                       <tarfileset dir="target/sqoop-${project.version}-bin-hadoop${hadoop.version}" prefix="sqoop-${project.version}-bin-hadoop${hadoop.version}" filemode="755">
                         <include name="**/*.sh" />
+                        <include name="bin/sqoop2-*" />
                       </tarfileset>
                       <tarfileset dir="target/sqoop-${project.version}-bin-hadoop${hadoop.version}" prefix="sqoop-${project.version}-bin-hadoop${hadoop.version}">
                         <include name="**/*" />
+                        <exclude name="bin/sqoop2-*" />
                         <exclude name="**/*.sh" />
                       </tarfileset>
                     </tar>