Skip to content

Commit

Permalink
Merge pull request #14 from nhi-vanye/post-windows-fix
Browse files Browse the repository at this point in the history
Handle the case where bootstrap has existing has existing directory
  • Loading branch information
nhi-vanye authored Dec 3, 2023
2 parents 694cf80 + ff381a0 commit 4c417e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion randeli/cmds/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def cli(ctx, download, force):
config.filename = cfg_path


cfg_path.parent.mkdir(parents=True)
cfg_path.parent.mkdir(parents=True, exist_ok=True)

config.write()

Expand Down

0 comments on commit 4c417e5

Please sign in to comment.