I know we can call like this:
os.system("ant compile")
But how to know whether the ant task is successful or not?
And is there another way to invoke ant task?
I know we can call like this:
os.system("ant compile")
But how to know whether the ant task is successful or not?
And is there another way to invoke ant task?
Can you modify ant to return a success code and capture that in python in it's return?
http://www.dotkam.com/2008/10/24/getting-return-code-from-ant-in-shell/