我想从groovy写文件。 我试过执行shell,但由于某种原因它不起作用。
this_job_id = 43294;
"echo THIS_JOB_ID=${this_job_id.toString()} > build_groovy.properties".execute()
由于某种原因,build_groovy.properties无法创建
答案 0 :(得分:1)
只需从groovy写一个文件
new File('build_groovy.properties').text = "THIS_JOB_ID=$this_job_id"