From 041ec327a2de0ee02563718e0991fe35156dbbb8 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Thu, 13 Oct 2016 13:45:18 -0300 Subject: [PATCH] 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. --- Tools/scripts/configure-ci.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Tools/scripts/configure-ci.sh b/Tools/scripts/configure-ci.sh index a3d69f8f8d..a1ecd8bca2 100755 --- a/Tools/scripts/configure-ci.sh +++ b/Tools/scripts/configure-ci.sh @@ -69,6 +69,7 @@ ln -s ~/opt/$CCACHE_ROOT/ccache ~/ccache/clang exportline="export PATH=$HOME/ccache" 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/tools-master/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin" exportline="${exportline}:$HOME/opt/$CCACHE_ROOT"