Skip to content

Commit

Permalink
Fixed file structure in zip archive (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZMonk91 authored Jan 3, 2024
1 parent b21f906 commit 2ec5be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/make-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def main() -> None:

if info != b"":
item = zipfile.ZipInfo()
item.filename = os.path.join(basename, filename)
item.filename = basename + "/" + filename
item.external_attr = 0o100644 << 16
item.compress_type = zipfile.ZIP_DEFLATED
timestamp, commit_hash = info.split(b":")
Expand Down

0 comments on commit 2ec5be5

Please sign in to comment.