summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFly me to the moon <git@bigly.dog>2021-10-03 03:26:57 -0700
committerFly me to the moon <git@bigly.dog>2021-10-03 03:26:57 -0700
commitd3bb4cc14c4dd58c136807c887702216c9400b6e (patch)
treec1e30775bde225dbbabd7c2eac5d459534555ca9
parentf86bef0c75e476fcf98d4a5c5143ca332b48cba6 (diff)
-rwxr-xr-xbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index 41b3fa1..20f6eb0 100755
--- a/build.py
+++ b/build.py
@@ -86,7 +86,7 @@ def _archive(triple: str) -> None:
release = _bin_path(triple)
archive = (_ARTS / triple).with_suffix(".zip")
with ZipFile(archive, mode="w") as fd:
- fd.write(release)
+ fd.write(release, arcname=release.name)
def _deb(triple: str) -> None: