Jenkins执行shell正在逃避 - 角色

时间:2014-04-10 12:29:42

标签: shell jenkins

我正在尝试从可执行shell任务运行以下命令:

rhc configure-app -a TestProject20140324192518 -–deployment-type binary

但是当我运行jenkins作业时,它会将命令转换为:

rhc configure-app -a TestProject20140324192518 $'-\342\200\223deployment-type' binary

我需要逃离吗 - 这里?

如果我将命令放在.sh中,它运行得很好。

1 个答案:

答案 0 :(得分:3)

这看起来不像连字符 - 你是从某个地方复制命令吗?

而不是:

rhc configure-app -a TestProject20140324192518 -–deployment-type binary

尝试:

rhc configure-app -a TestProject20140324192518 --deployment-type binary

请注意,在部署类型"之前的字符;已被改变。