Switch to lime.exe instead of lime.bat (fixes exit from batch files)

This commit is contained in:
Joshua Granick
2015-02-16 17:58:14 -08:00
parent 4ac8380cca
commit 9675f8a40a
6 changed files with 34 additions and 6 deletions

18
tools/AliasScript.hx Normal file
View File

@@ -0,0 +1,18 @@
package;
import haxe.macro.Compiler;
class AliasScript {
public static function main () {
var args = [ "run", Compiler.getDefine ("command") ].concat (Sys.args ());
Sys.exit (Sys.command ("haxelib", args));
}
}