Skip to content

Commit 9d14588

Browse files
committed
fix actions
1 parent bd6fba6 commit 9d14588

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/windows.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
export/windows/obj/
2525
restore-keys: |
2626
cache-build-windows
27+
- name: Install latest HXCPP
28+
run: haxelib install hxcpp --always --quiet
29+
2730
- name: Installing / Updating libraries
2831
run: |
2932
haxe -cp cli --run Lib

cli/Lib.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Lib {
3030
args.push("--always");
3131

3232
Sys.println('${BOLD}${YELLOW}Installing: ${lib.name} ${lib?.version ?? ""}${RESET}');
33-
run("haxelib", args, function() {
33+
run("haxelib", args, ()->{
3434
Sys.println('${GREEN}[✓] Installed: ${lib.name}${RESET}');
3535
}, onFailed);
3636
}

0 commit comments

Comments
 (0)