gpt4 book ai didi

Gradle - 如何在 doLast 中执行命令行并获取退出代码?

转载 作者:行者123 更新时间:2023-12-02 01:04:49 25 4
gpt4 key购买 nike

task executeScript() {

doFirst {
exec {
ignoreExitValue true
commandLine "sh", "process.sh"
}
}

doLast {
if (execResult.exitValue == 0) {
print "Success"
} else {
print "Fail"
}
}
}

我收到以下错误

> Could not get unknown property 'execResult' for task ':core:executeScript' of type org.gradle.api.DefaultTask.

如果我将 commandLine 移动到配置部分,一切正常。但我希望 commandLine 处于操作 block 中,这样它就不会在我们每次执行其他一些 gradle 任务时运行。

最佳答案

为你的任务使用 gradle type

task executeScript(type : Exec) {
commandLine 'sh', 'process.sh'
ignoreExitValue true

doLast {
if(execResult.exitValue == 0) {
println "Success"
} else {
println "Fail"
}
}
}

这对你有用...

You can read more about the Exec task here

关于Gradle - 如何在 doLast 中执行命令行并获取退出代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48443448/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com