Skip to content

Commit 043a9e0

Browse files
authored
Merge pull request adafruit#1469 from vgoodwinv/patch-2
Update build_release_files.py - board/language version
2 parents 738e8f0 + c1cfe5f commit 043a9e0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tools/build_release_files.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
board_info = all_boards[board]
3535

3636
for language in languages:
37+
bin_directory = "../bin/{board}/{language}".format(board=board, language=language)
38+
os.makedirs(bin_directory, exist_ok=True)
3739
start_time = time.monotonic()
3840
make_result = subprocess.run("make -C ../ports/" + board_info["port"] + " TRANSLATION=" + language + " BOARD=" + board, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
3941
build_duration = time.monotonic() - start_time

0 commit comments

Comments
 (0)