Re: Exec Task Problem on Linux
Earl Hood <[email protected]>
| Newsgroups | gmane.comp.jakarta.ant.user |
|---|---|
| Message-ID | <CANDwYvf2mSBviLvaV8wnfD1o=tX2qz4LqV8DZDX-epo8EQnkMQ@mail.gmail.com> |
On Tue, Apr 14, 2015 at 1:35 PM, Chris Barlock wrote:
> I have the following Ant script:
...
> <arg value="${srcDir}/protobuf/asf/*.proto"/>
Glob expansion is a shell function, hence the error you are getting
since the file "*.proto" does not exist.
Have a look at <apply>. It supports filesets.
--ewh