I have the following target which fails on gunzip
<!--
=================================================================== -->
<!-- Build
-->
<!--
=================================================================== -->
<target name="install" depends="init">
<move file="${build.dir}\${project}.tgz"
tofile="${build.dir}\${project}.tar.gz"/>
<unzip src="${build.dir}\${project}.tar.gz" dest="${build.dir}"/>
<untar src="${build.dir}\${project}.tar" dest="${build.dir}"/>
</target>
I get the following result:
C:\home\sandbox\Project\build>build install
Buildfile: build.xml
init:
install:
Moving 1 files to C:\home\sandbox\Project\Trg
Expanding: C:\home\sandbox\Project\Trg\Project.tar.gz into
C:\home\sandbox\Project\Trg
BUILD FAILED
C:\home\sandbox\Project\build\build.xml:212: source
C:\home\sandbox\Project\Trg\Project.tar doesn't exist
Total time: 0 seconds
Anyone know why gunzip is not working ?
Is there a particular version of gunzip that I need ??
Thanks