1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Don't let test runner script bail out before printing logs

This commit is contained in:
Ivan Grokhotkov 2016-03-10 09:26:38 +03:00
parent 2a6e8ccb60
commit 661fbca6dc

View File

@ -2,6 +2,7 @@
function build_sketches()
{
set +e
local arduino=$1
local srcpath=$2
local build_cmd=$3
@ -33,6 +34,7 @@ function build_sketches()
fi
rm build.log
done
set -e
}
function install_libraries()