ci: add ~/.local/bin to PATH

In semaphoreci it doesn't have ~/.local/bin by default on path making
us not able to find the mavproxy.py executable.
This commit is contained in:
Lucas De Marchi 2016-10-13 13:45:18 -03:00
parent cc683c1db1
commit 041ec327a2
1 changed files with 1 additions and 0 deletions

View File

@ -69,6 +69,7 @@ ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/clang
exportline="export PATH=$HOME/ccache" exportline="export PATH=$HOME/ccache"
exportline="${exportline}:$HOME/bin" exportline="${exportline}:$HOME/bin"
exportline="${exportline}:$HOME/.local/bin"
exportline="${exportline}:$HOME/opt/gcc-arm-none-eabi-4_9-2015q3/bin" exportline="${exportline}:$HOME/opt/gcc-arm-none-eabi-4_9-2015q3/bin"
exportline="${exportline}:$HOME/opt/tools-master/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin" exportline="${exportline}:$HOME/opt/tools-master/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin"
exportline="${exportline}:$HOME/opt/$CCACHE_ROOT" exportline="${exportline}:$HOME/opt/$CCACHE_ROOT"