Skip to content

Commit

Permalink
[no ci] Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
aBozowski committed Jun 10, 2022
1 parent df929b2 commit 3cae95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chef/chef.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def bundle_esp32(device_name: str) -> None:
if os.sep in item:
new_dir = item[:item.rindex(os.sep)]
new_dir = os.path.join(_CD_STAGING_DIR, new_dir)
os.makedirs(new_dir, exists_ok=True)
os.makedirs(new_dir, exist_ok=True)
src_item = os.path.join(esp_root, item)
dest_item = os.path.join(_CD_STAGING_DIR, item)
shutil.copy(src_item, dest_item)
Expand Down

0 comments on commit 3cae95c

Please sign in to comment.