From 2ec5be5b3682d3e555b6250cf529f9accb668642 Mon Sep 17 00:00:00 2001 From: Zachary Monk Date: Wed, 3 Jan 2024 13:46:00 -0800 Subject: [PATCH] Fixed file structure in zip archive (#220) --- scripts/make-release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-release.py b/scripts/make-release.py index ac4fa9e..69d412f 100644 --- a/scripts/make-release.py +++ b/scripts/make-release.py @@ -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":")