I've been attempting to integrate autoprefix-cli into my ANT build. The code snippet below shows what I've tried so far.
<target name="auto">
<apply executable="autoprefixer-cli.bat" verbose="true" force="true" failonerror="true">
<arg value="-d" /> <!-- Turn on verbose -->
<arg value="prefix" />
<arg value="*.css" />
</apply>
</target>
However, when I run an ant build, I keep getting an error that says "resource not specified".
BUILD FAILED
D:\tempTest\AntTestProject\build.xml:25: no resources specified
Just to clarify, I am able to access and use autoprefix-cli from the command line. It was installed with the -g flag and functions properly when used directly in the command line.