Fix Particle and refine build names

This commit is contained in:
Scott Shawcroft
2018-12-04 16:03:33 -08:00
parent eb8a467dc6
commit 57345c9928
6 changed files with 23 additions and 12 deletions

View File

@ -39,7 +39,7 @@ for board in all_boards:
for entry in os.scandir("_build-{}".format(board)):
for extension in ["zip", "hex"]:
if entry.name.endswith(extension):
if entry.name.endswith(extension) and "nosd" not in entry.name:
shutil.copy(entry.path, bin_directory)
if travis: