Skip to content

Commit

Permalink
Merge pull request #341 from duckinator/gh338
Browse files Browse the repository at this point in the history
[v7.0.2] Fix `bork build` failure due to bad mkdir() call.
  • Loading branch information
duckinator authored Nov 20, 2023
2 parents 728799b + c7b5a4f commit ceeef19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bork/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _bdist_file():
def _prepare_zipapp(dest, bdist_file):
# Prepare zipapp directory.
try_delete(dest)
Path(dest).mkdir()
Path(dest).mkdir(parents=True)
return subprocess.check_call([
sys.executable, '-m', 'pip', 'install', '--target', dest, bdist_file
])
Expand Down
2 changes: 1 addition & 1 deletion bork/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file should only ever be modified to change the version.
# This will automatically prepare and create a release.

__version__ = '7.0.1'
__version__ = '7.0.2'

0 comments on commit ceeef19

Please sign in to comment.