Travix fix incorrect variable name
This commit is contained in:
parent
8577d43b2e
commit
f974021803
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ script:
|
||||||
- |
|
- |
|
||||||
for example in $(find $PWD/examples -name '*.ino' | sort); do
|
for example in $(find $PWD/examples -name '*.ino' | sort); do
|
||||||
# check whether to skip this sketch
|
# check whether to skip this sketch
|
||||||
if [[ ${example} =~ $PAT2 ]]; then
|
if [[ ${example} =~ $SKIP_PAT ]]; then
|
||||||
# skip sketch
|
# skip sketch
|
||||||
echo -e "\n\033[1;33mSkipped ${example##*/} (matched with $SKIP_PAT)\033[0m";
|
echo -e "\n\033[1;33mSkipped ${example##*/} (matched with $SKIP_PAT)\033[0m";
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue