I have a following command to build ProjectA;
build.bat release -Dinclude.dir="X/Source/Private/ProjectA/ivy.xml"
Where build.bat internally calls 'ant release -Dinclude.dir="X/Source/Private/ProjectA/ivy.xml"' and its WORKS OK.
Now as soon as I update above into following to pick all IVY projects from X directory it stops working and ANT throws error;
build.bat release -Dinclude.dir="X/**/ivy.xml"
Missing value for property include.dir
I debugged a little in batch script and it seems my batch is calling ant as follows if I apply error command;
ant release -Dinclude.dir=
Somehow batch/shell (same things happens if run on Linux with build.sh) are not able to interpret the value which contains '*' in them?
Am I missing anything?