Changeset 15306


Ignore:
Timestamp:
2008-04-30T15:57:54+12:00 (16 years ago)
Author:
ak19
Message:

Removed some debugging statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/trunk/gs3-webservices-democlient/build.xml

    r15305 r15306  
    7272<target name="make-dist" description="Generates the zip file of the lib and src folders and the executable ${exec.jar.name} file" depends="get-zipformat,ensure-exec-jar" if="zip.type">
    7373     <mkdir dir="${dist}" />
    74      <echo>zip.type=${zip.type}</echo>
    7574     <antcall target="create-${zip.type}"/>
    7675</target>
     
    170169<!-- User input for generating compressed output file for one of the chosen file types. A choice of zip, tar.gz (tar gzip), or tar.bz2 (tar bzip)-->
    171170<target name="create-targzip" if="zip.type" description="User chose to create a tar.gz file of the project">
    172     <tar destfile="${dist}/${download.zip.name}.tar.gz" basedir="${basedir}" compression="gzip" excludes="${zip.excludes}" />
     171    <tar destfile="${dist}/${download.zip.name}.tar.gz" basedir="${basedir}" compression="gzip" excludes="${zip.excludes}" longfile="gnu" />
     172    <echo>If the filepaths are longer than 100 characters, GNU compatible tar commands are necessary to untar the tar.gz</echo>
    173173</target>
    174174
    175175<target name="create-tarbzip" if="zip.type" description="User chose to create a tar.bz2 file of the project">
    176     <tar destfile="${dist}/${download.zip.name}.tar.bz2" basedir="${basedir}" compression="bzip2" excludes="${zip.excludes}" />
     176    <tar destfile="${dist}/${download.zip.name}.tar.bz2" basedir="${basedir}" compression="bzip2" excludes="${zip.excludes}" longfile="gnu" />
     177    <echo>If the filepaths are longer than 100 characters, GNU compatible tar commands are necessary to untar the tar.gz</echo>
    177178</target>
    178179
     
    187188Type one of: zip, tar.gz, tar.bz2
    188189Press enter for default: zip /></input>
    189     <echo>You chose output file type: ${zip.type}</echo>
    190190    <condition property="zip.type" value="targzip">
    191191      <equals arg1="tar.gz" arg2="${zip.format}"/>
     
    197197      <equals arg1="tar.bz2" arg2="${zip.format}"/>
    198198    </condition>
    199     <echo>zip.type=${zip.type}</echo>
     199    <echo>You chose output file type: ${zip.type}</echo>
    200200  </target>
    201201</project>
Note: See TracChangeset for help on using the changeset viewer.