Jenkins windows批处理文件 - 获取选择参数值

时间:2018-05-23 15:43:20

标签: windows jenkins

我正在创建一个有选择参数的jenkins作业。配置为:

Name = Source
Choices =
EVN1
ENV2
ENV3

在我的Windows批处理脚本

setlocal ENABLEDELAYEDEXPANSION
echo The source value is ${Source}

当我选择参数ENV1时,echo不打印ENV1而是打印:
The source value is ${Source}

预期


The source value is ENV1

1 个答案:

答案 0 :(得分:0)

将批处理脚本更改为:
echo The source value is %Source%

这将打印当前选定的值,例如EVN1。你也不需要delayedexpansion。