HBASE-4922 [packaging] Assembly tars up hbase in a subdir; i.e. after untar hbase-0.92.0 has a subdir named 0.92.0

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1212732 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-12-10 05:33:39 +00:00
parent 2261fc23c9
commit c3110b3436
1 changed files with 2 additions and 2 deletions

View File

@ -774,10 +774,10 @@
<!-- Using Unix tar to preserve symlinks -->
<exec executable="tar" failonerror="yes"
dir="${project.build.directory}/${project.build.finalName}">
dir="${project.build.directory}">
<arg value="czf"/>
<arg value="${project.build.directory}/${project.build.finalName}.tar.gz"/>
<arg value="."/>
<arg value="${project.build.finalName}"/>
</exec>
</target>