From 0a84c20d1ddba587d16a5a10a641969501c27cfb Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Mon, 18 May 2026 20:48:23 +0900 Subject: [PATCH] fix: explicitly set arcname in tarball --- scripts/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.py b/scripts/release.py index b606ad5..b518270 100644 --- a/scripts/release.py +++ b/scripts/release.py @@ -42,5 +42,5 @@ if proc.returncode == 0: output_exe.rename(release_exe) tarpath = output.joinpath(tarname) with tarfile.open(tarpath, "w:gz") as tar: - tar.add(release_exe) + tar.add(release_exe, arcname=APP_NAME_LOWER) print(f"Wrote tarfile to '{tarpath}'")