Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
tools: fix package filename
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Apr 27, 2024
1 parent 1f3f609 commit 27015bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/shared/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def package(self, args: argparse.Namespace) -> None:
zip_path = args.output
else:
version = generate_version()
zip_path = Path(f"{version}-{self.RELEASE_ZIP_SUFFIX}.zip")
zip_path = Path(f"TR2X-{version}-{self.RELEASE_ZIP_SUFFIX}.zip")
source_files = [
*[
(path, path.relative_to(SHIP_DIR))
Expand Down

0 comments on commit 27015bd

Please sign in to comment.