Hey, I am trying to run my program using ant, for some reason it run only if I have same starting and ending quotation, but to a friend of mine the ant command bellow is running.
ant run3 -Dargs=”hello world big lovely day l”
When I tried to run it myself I get :
ANT_OPTS is set to -Djava.security.manager=allow
The syntax of the command is incorrect.
-
only when I change the command to have the same quotation of the kind :”” It run succsufelly.
ant run3 -Dargs=”hello world big lovely day l”
-
But if I tried to change both of them to ” quotation it run sucsuffley but I got a build error:
BUILD FAILED
Target “world” does not exist in the project “null”.
I would glad if someone could help me understand why it is not working for me.