Skip to content

Commit 6d18935

Browse files
authored
use haxelib run lime for compiling, so that lime from cne setup is used for compiling (#674)
1 parent 8b05257 commit 6d18935

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

commandline/commands/Compiler.hx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ class Compiler {
1717
private static function __build(args:Array<String>, arg:Array<String>) {
1818
for(a in args)
1919
arg.push(a);
20-
Sys.command("lime", arg);
20+
21+
arg = ['run', 'lime'].concat(arg);
22+
23+
Sys.command("haxelib", arg);
2124
}
2225

2326
public static function getBuildTarget() {

0 commit comments

Comments
 (0)