Skip to content

Commit

Permalink
.travis.yml: Use 'find' to find examples because it can handle multi-…
Browse files Browse the repository at this point in the history
…file examples.
  • Loading branch information
DavidEGrayson committed Mar 8, 2017
1 parent 9dc68e3 commit 3e2d979
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -19,6 +19,6 @@ env:

script:
- set -eo pipefail;
for e in examples/*; do
platformio ci --board=$BOARD --lib=. $e/*;
for e in $(find examples -name \*.ino); do
platformio ci --board=$BOARD --lib=. $e;
done

0 comments on commit 3e2d979

Please sign in to comment.