How do we decompress TGZ file with Ant on Windows machine? I have been trying:
<gunzip src="${ARTIFACT}/${platform}.tgz"/>
<untar src="${ARTIFACT}/${platform}.tar" dest="${InstallDir}.${LICLIENT_VERSION}.test"/>
But it does not work.
Try something like this
<target name="unpack">
<untar src="test.tar.gz" dest="test" compression="gzip"/>
</target>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With