Skip to content

Commit

Permalink
Merge pull request #103 from oliv3r/patch-1
Browse files Browse the repository at this point in the history
Recursivily create default_folder
  • Loading branch information
uPesy authored Oct 13, 2023
2 parents 491daa5 + c3b51c9 commit 2778d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easyeda2kicad/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def valid_arguments(arguments: dict) -> bool:
"easyeda2kicad",
)
if not os.path.isdir(default_folder):
os.mkdir(default_folder)
os.makedirs(default_folder, exist_ok=True)

base_folder = default_folder
lib_name = "easyeda2kicad"
Expand Down

0 comments on commit 2778d44

Please sign in to comment.