18 lines
234 B
Haxe
18 lines
234 B
Haxe
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));
|
|
|
|
}
|
|
|
|
|
|
} |