I opened up the .gz file in windows using winZip.  The funny thing is that
if the Ant script runs on windows then it produces a .gz file that contain a
.tar file.  It's only if I run the ant script on Linux that .gz file
contains a .tar[1] file.  Shouldn't the two .gz files (the one produced on
windows and the one produced on Linux) be exactly the same at the binary
level?

Thanks,
--Maciej



> -----Original Message-----
> From: Magesh Umasankar [mailto:[EMAIL PROTECTED]]
> Sent: Friday, December 07, 2001 2:46 AM
> To: Ant Users List
> Subject: Re: Tar task weird behavior on Linux
>
>
> From: "Maciej Zawadzki" <[EMAIL PROTECTED]>
>
> > run an Ant script with the fragment below, the .gz file that is created
> > contains a .tar[1] file rather than a .tar file.  This only happens if I
> > execute the ant script on Linux, it works fine on Windows 2000.
> >
> >         <!-- .tar.gz all the source code to the deploy directory -->
> >         <tar tarfile="${dist.dir}/${name}-${version}-src.tar"
> >             basedir="${src.dir}" />
> >         <gzip
> > zipfile="${deployDir}/${download.dir}/${name}-${version}-src.tar.gz"
> >             src="${dist.dir}/${name}-${version}-src.tar" />
> >         <delete file="${dist.dir}/${name}-${version}-src.tar"/>
> >
>
> How did you check what files are contained inside the gz file?
>
> Did you use native
>
> gzip -l
>
> or
>
> gzip --list
>
> ?  If not, will you please ensure that?
>
> Magesh
>
>
>
>
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to