Skip to content

Commit

Permalink
2.2.0 Release with zip rename changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mjc4wilton committed May 22, 2024
1 parent 08f2944 commit 20fb0c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .hemtt/hooks/post_release/01_rename_zip.rhai
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let releases = HEMTT_RFS.join("releases");

let src = releases.join(HEMTT.project().prefix() + "-" + HEMTT.project().version().to_string() + ".zip");
let dst = releases.join(HEMTT.project().name().to_lower() + "_" + HEMTT.project().version().to_string() + ".zip");
let dst = releases.join(HEMTT.project().prefix().to_lower() + "_" + HEMTT.project().version().to_string() + ".zip");

print("Moving zip to " + dst);
if !src.move(dst) {
Expand Down
2 changes: 1 addition & 1 deletion addons/main/script_version.hpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define MAJOR 2
#define MINOR 1
#define MINOR 2
#define PATCHLVL 0
#define BUILD 0

0 comments on commit 20fb0c3

Please sign in to comment.