Skip to content

Commit 46b9269

Browse files
committed
skip homekit example
follow up to #356
1 parent ffab740 commit 46b9269

File tree

2 files changed

+1
-1
lines changed
  • libraries/Bluefruit52Lib/examples/Projects/homekit/homekit_lightbulb
  • tools

2 files changed

+1
-1
lines changed

libraries/Bluefruit52Lib/examples/Projects/homekit/homekit_lightbulb/.skip

Whitespace-only changes.

tools/build_all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def build_examples(variant):
3737
for sketch in glob.iglob('libraries/**/*.ino', recursive=True):
3838
start_time = time.monotonic()
3939

40-
if os.path.exists(os.path.dirname(sketch) + '/.skip.' + variant):
40+
if os.path.exists(os.path.dirname(sketch) + '/.skip') or os.path.exists(os.path.dirname(sketch) + '/.skip.' + variant):
4141
success = "skipped"
4242
else:
4343
build_result = subprocess.run("arduino --verify {}".format(sketch), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)

0 commit comments

Comments
 (0)