Travis fix

This commit is contained in:
jgromes 2019-07-31 09:58:46 +02:00
parent 7caeb3ded0
commit 2dacf362ad

View file

@ -42,10 +42,10 @@ script:
# set sketch skipping pattern for some boards # set sketch skipping pattern for some boards
- if [[ "$BOARD" =~ "esp8266:esp8266:" ]]; then - if [[ "$BOARD" =~ "esp8266:esp8266:" ]]; then
# on ESP8266, skip HTTP and MQTT examples # on ESP8266, skip HTTP and MQTT examples
SKIP_PAT='(HTTP|MQTT).*ino' SKIP_PAT='(HTTP|MQTT).*ino';
else else
# default skip pattern (matches everything) # default skip pattern (matches everything)
SKIP_PAT='.*' SKIP_PAT='.*';
fi fi
# build all example sketches # build all example sketches