vote up 0 vote down star

I'm trying to use jsmin with nant - and it just uses stdin and stdout for input and output. The nant 'exec' task allows you to redirect the output to a file, but not get the input from a file.

I have tried with a 'commandline' using '>' and '<' to direct the input and output, but nant just goes away and doesn't come back :(

I can't believe no-one's tried to do this before. Please help! :)

flag

60% accept rate
Before anyone else says: I HAVE TRIED using the &lt; operator, and nant just seems to be waiting for more keyboard input, so never returns. – Ian Grainger Jul 14 at 15:49

2 Answers

vote up 1 vote down check

From http://www.mail-archive.com/nant-developers@lists.sourceforge.net/msg04575.html. You should be able to do something similar to:

        <exec program="cmd.exe" workingdir=".">
                <arg value="/c cacls" />
                <arg value="${mdb.file}" />
                <arg value="/E" />
                <arg value="/G testpc\aspnet:F" />
                <arg value="&lt; y.txt" />
        </exec>
link|flag
I'm afraid I probably won't test this now, but thanks very much for finding this for me! I assume this answer is correct. I've discovered that nant concat doesn't keep files in order, so I'm going to have to modify JSMin code to get input from a set of files anyway. – Ian Grainger Jul 15 at 8:40
vote up 0 vote down

I believe NAnt does support input from a file. Since the build file is XML you must use the xml encoded "<".

<exec program="somefile.exe" workingdir=".">
  <arg value="&lt; input.txt" />
</exec>
link|flag
I did this. Nant just seems to wait forever for input. – Ian Grainger Jul 14 at 13:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.