Skip to content

Commit 9f73557

Browse files
authored
fix bash error handeling
1 parent 64fae55 commit 9f73557

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ install:
2121
- pip install -U platformio
2222

2323
script:
24-
- for e in examples/*; do
25-
platformio ci --board=$BOARD --lib=. $e/*;
26-
done
24+
- set -eo pipefail;
25+
for e in examples/*; do
26+
platformio ci --board=$BOARD --lib=. $e/*;
27+
done

0 commit comments

Comments
 (0)