我正在创建一个有选择参数的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
答案 0 :(得分:0)
将批处理脚本更改为:
echo The source value is %Source%
这将打印当前选定的值,例如EVN1
。你也不需要delayedexpansion。