为什么我的简单Exec gradle任务不起作用且日志不明确?

Why my simple Exec gradle task doesn't work and logs are not explicit?

我不明白为什么使用gradle这个非常简单的任务不起作用?

task test(type:Exec) {
commandLine 'ls -l' }

输出只告诉我:

$ gradle test :test FAILED

FAILURE: Build failed with an exception.

  • What went wrong: Execution failed for task ':test'.

    A problem occurred starting process 'command 'ls -l''

  • 尝试:使用--stacktrace选项运行以获取堆栈跟踪。 使用--info或--debug选项运行以获取更多日志输出。

在这里建立失败的代码

有谁能告诉我使用它有什么问题?
谢谢。


使用

1
task test(type:Exec) { commandLine 'ls', '-l' }

顺便说一下:你真的应该指定工作目录。