1. 程式人生 > >jenkins 執行shell命令 command not found,make: *** [build] Error 127 解決辦法

jenkins 執行shell命令 command not found,make: *** [build] Error 127 解決辦法

本地執行shell命令成功,Jenkins 遠端執行 shell命令有時 提示命令找不到,或者make的時候報錯。

因為Jenkins執行shell時無法獲取環境變數的原因導致

解決辦法在shell指令碼上加上環境變數如

#!/bin/bash

source ~/.bash_profile
source /etc/profile

就可以正常用Jenkins執行shell了