无法更改在Jenkins

时间:2016-02-10 06:24:28

标签: linux shell jenkins

我正在尝试在Jenkins上运行shell脚本并想要更改目录。我的代码如下:

#!/bin/bash
pwd
function myprog() {
 cd root/data
}

myprog
pwd

我尝试了here发布的问题中提到的所有可能性。

我尝试了符号链接,别名和功能,但没有成功。在jenkins控制台输出中,我总是收到以下错误:

/tmp/hudson772738020072372550.sh: line 11: cd: root/data: No such file or directory

我在这里注意到的是,cd之后有一个冒号,是否会产生一些问题?请帮助。感谢。

1 个答案:

答案 0 :(得分:1)

这是shell的方式,表示字符串root/data与当前目录下的任何目录都不对应。

你可能想要说cd /root/data