Skip to content

Commit b05b7a0

Browse files
committed
Fixing comparison operator
1 parent 9b0e8db commit b05b7a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ before_install:
4848
- if [[ "$BOARD" =~ "arduino:samd:" ]]; then
4949
arduino-cli core install arduino:samd;
5050
fi
51-
- if [[ "$BOARD" == "esp8266:esp8266" ]]; then
51+
- if [[ "$BOARD" =~ "esp8266:esp8266" ]]; then
5252
arduino-cli core install esp8266:esp8266 --additional-urls http://arduino.esp8266.com/stable/package_esp8266com_index.json;
5353
fi
5454
- |

0 commit comments

Comments
 (0)