You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Jeff Barrett <JB...@sawyermedia.com> on 2002/12/11 03:10:17 UTC

file-set in zip has a lowercase bug?

ant 1.5.1
win2k

directory structure:
WEB-INF/build/build.xml
WEB-INF/xs/sidebar.xsl
WEB-INF/XSLT/sidebar.xsl

build.xml
    <target name="build-war">
        <delete file="ming.war"/>
        <zip destfile="ming.war" update="no" whenempty="create" >
            <fileset dir="../.." excludes="CVS" casesensitive="yes" >
                <include name="WEB-INF/XSLT/**"/>
                <include name="WEB-INF/xs/**"/>
            </fileset>
        </zip>
    </target>

ming.war contents are (note the lowercase):
WEB-INF/xs/sidebar.xsl
web-inf/xslt/sidebar.xsl

I was hoping that ming.war would contain:
WEB-INF/xs/sidebar.xsl
WEB-INF/XSLT/sidebar.xsl

ideas?

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: file-set in zip has a lowercase bug?

Posted by Stefan Bodewig <bo...@apache.org>.
Probably <http://jakarta.apache.org/ant/faq.html#winzip-lies>

Stefan

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: file-set in zip has a lowercase bug?

Posted by Conor MacNeill <co...@cortexebusiness.com.au>.
Jeff Barrett wrote:
> ming.war contents are (note the lowercase):
> WEB-INF/xs/sidebar.xsl
> web-inf/xslt/sidebar.xsl

Jeff,

How did you determine this? Did you use winzip? If so, can you check the 
contents by using
	jar tvf ming.war

If it is still an issue, let us know.

Conor



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>