Skip to content

Commit

Permalink
Examples should be excluded from platformio library.json file
Browse files Browse the repository at this point in the history
If examples are not excluded, platformio will try to build them (and fail).
  • Loading branch information
gehel committed Sep 6, 2015
1 parent ceecf38 commit 759e805
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
"url": "https://github.com/TMRh20/RF24Network.git"
},
"dependencies": { "name": "RF24", "authors": "TMRh20", "frameworks": "arduino" },
"exclude": [
"RPi",
"tests"
"exclude": [
"examples/*",
"examples_RPi/*",
"RPi/*",
"tests/*"
],
"frameworks": "arduino",
"platforms": [
Expand Down

0 comments on commit 759e805

Please sign in to comment.