1
votes

Is there a way to get the resulting commands that phing executes as the result of running a build file, or convert a build.xml file to a bash script?

Im thinking of moving to just bash scripts for building.

1
Can you test with -debug ? I think phing will echo all commands - LP154
@LP154 Sounds good, allow me to try - Paul Stanley
I tried, works with -debug + -verbose. I posted an answer - LP154

1 Answers

2
votes

By using :

phing -debug -verbose

You will have all a lot of information including the commands and the arguments, but also a lot of other debugging stuff.