我有以下构建文件:
<?xml version="1.0" encoding="UTF-8"?>
<project name="Example" default="test" description="Sample Description">
<target name="test">
<exec command="ls" dir="./" />
</target>
</project>
但是,Phing 似乎在不输出任何内容的情况下运行此命令:
Buildfile: /path/to/build/file/build.xml
Example > test:
BUILD FINISHED
Total time: 0.2106 seconds
我怎样才能解决这个问题?
注意phpunit测试
最佳答案
你应该使用参数
passthru="true"
https://www.phing.info/docs/guide/trunk/ExecTask.html 上的更多信息
关于phing - 在 Phing 上执行命令时没有输出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39620448/