I am iterating over files listed in an includesfile file and they need to be
processed in the order that they are specified, but instead they are being
processed in alphanumeric order.  Why is this sorting occurring, and how do
I get around it?

        <concat destfile="${jsDeployDir}/${libname}-debug.js" fixlastline="true"
append="false">
                <fileset dir="${tempClientDir}" includesfile="${filename}"
casesensitive="false" />
        </concat>

For example, say the includesfile lists the following files:
    core.js
    framework.js
    ajax.js

The order they get assembled in is:
    ajax.js
    core.js
    framework.js

There absolutely MUST be a way around this!  Any ideas?

-- 
View this message in context: 
http://ant.1045680.n5.nabble.com/includesfile-in-fileset-is-not-respecting-order-tp3368946p3368946.html
Sent from the Ant - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to