Skip to content

Commit

Permalink
fix: create config dir recursively for windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
codito committed Jan 22, 2024
1 parent b43ff17 commit f90e7d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arey/platform/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

def _make_dir(path: str) -> None:
if not os.path.exists(path):
os.mkdir(path)
os.makedirs(path, exist_ok=True)


def get_asset_dir(suffix: str = "") -> str:
Expand Down

0 comments on commit f90e7d7

Please sign in to comment.