Skip to content

Commit 53b0e99

Browse files
authored
Merge pull request #357 from adafruit/skip-homekit-sketch
skip homekit example
2 parents ffab740 + 46b9269 commit 53b0e99

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)