Skip to content

Commit

Permalink
fixed zip path
Browse files Browse the repository at this point in the history
  • Loading branch information
alters-mit committed Feb 28, 2023
1 parent ade3bca commit aafb65f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def upload_github_release() -> None:
with ZipFile("clatter_windows.zip", "w") as f:
f.write("clatter.exe", "clatter.exe")
chdir(cwd)
zip_path = clatter_cli_directory.joinpath("clatter_windows.zip").absolute()
zip_path = clatter_cli_win_path.joinpath("clatter_windows.zip").absolute()
release.upload_asset(path=str(zip_path),
name="clatter_windows.zip",
content_type="application/gzip")
Expand Down

0 comments on commit aafb65f

Please sign in to comment.