Skip to content

Commit 0063bd8

Browse files
committed
.travis.yml: Fix Bash error handling.
1 parent ee366ab commit 0063bd8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
- BOARD=yun
1515

1616
script:
17-
- for e in examples/*; do
18-
platformio ci --board=$BOARD --lib="." $e/*;
17+
- set -eo pipefail;
18+
for e in examples/*; do
19+
platformio ci --board=$BOARD --lib=. $e/*;
1920
done

0 commit comments

Comments
 (0)