From d8a91c866ff77fb3fdfde371bb47d5d99a43d015 Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 10 Feb 2019 10:31:09 +0100 Subject: [PATCH] [Travis] Removed redundant language flag --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d34a3b73..2fbb7c2f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,3 @@ -language: c env: global: # keep Arduino IDE version at 1.8.1 until https://github.com/per1234/arduino-ci-script/issues/1 is resolved @@ -22,9 +21,9 @@ script: echo -e "\n\033[1;33mBuilding ${example##*/} ... \033[0m"; arduino --verify --board $BOARD $example; if [ $? -ne 0 ]; then - echo -e "\033[1;31m$example build FAILED\033[0m\n"; + echo -e "\033[1;31m${example##*/} build FAILED\033[0m\n"; exit 1; else - echo -e "\033[1;32m$example build PASSED\033[0m\n"; + echo -e "\033[1;32m${example##*/} build PASSED\033[0m\n"; fi done