我是gradle的新手,在这种情况下,我需要在gradle的单个任务中执行2个Shell脚本。
我尝试了以下操作,但未执行script1.sh任务。
task downloadtheArtifacts(type: Exec) {
commandLine './script1.sh'
commandLine './script2.sh'
}
请让我知道如何解决此问题?
答案 0 :(得分:0)
尝试:
task downloadtheArtifacts {
doLast {
exec {
commandLine './script1.sh'
}
exec {
commandLine './script2.sh'
}
}
}