Skip to content

Commit

Permalink
Fix HEMTT launch warning and post release hook (#768)
Browse files Browse the repository at this point in the history
  • Loading branch information
mharis001 authored Jul 22, 2024
1 parent 2b1a22b commit d6835af
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_short() + ".zip");
let dst = releases.join(HEMTT.project().prefix().to_lower() + "_" + HEMTT.project().version().to_string_short() + ".zip");

print("Moving zip to " + dst);
if !src.move(dst) {
Expand Down
2 changes: 1 addition & 1 deletion .hemtt/project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ include = [
[version]
git_hash = 0

[hemtt.launch]
[hemtt.launch.default]
workshop = [
"450814997", # CBA_A3
]
Expand Down

0 comments on commit d6835af

Please sign in to comment.