jenkins 执行shell命令 command not found,make: *** [build] Error 127 解决办法
本地执行shell命令成功,Jenkins 远程执行 shell命令有时 提示命令找不到,或者make的时候报错。因为Jenkins执行shell时无法获取环境变量的原因导致解决办法在shell脚本上加上环境变量如#!/bin/bashsource ~/.bash_profilesource /etc/profile就可以正常用Jenkins执行shell了...
·
本地执行shell命令成功,Jenkins 远程执行 shell命令有时 提示命令找不到,或者make的时候报错。
因为Jenkins执行shell时无法获取环境变量的原因导致
解决办法在shell脚本上加上环境变量如
#!/bin/bash
source ~/.bash_profile
source /etc/profile
就可以正常用Jenkins执行shell了
更多推荐
已为社区贡献1条内容
所有评论(0)