Travix fix incorrect variable name

pull/28/head
jgromes 2019-07-31 10:22:14 +02:00
rodzic 8577d43b2e
commit f974021803
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -46,7 +46,7 @@ script:
- |
for example in $(find $PWD/examples -name '*.ino' | sort); do
# check whether to skip this sketch
if [[ ${example} =~ $PAT2 ]]; then
if [[ ${example} =~ $SKIP_PAT ]]; then
# skip sketch
echo -e "\n\033[1;33mSkipped ${example##*/} (matched with $SKIP_PAT)\033[0m";
else