瀏覽代碼

Hide --neko-lib-path from help menu

It is only meant to be used internally for haxelibs
tobil4sk 2 年之前
父節點
當前提交
0c62383db2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/compiler/args.ml

+ 1 - 1
src/compiler/args.ml

@@ -198,7 +198,7 @@ let parse_args com =
 		("Target-specific",["--swf-lib"],["-swf-lib"],Arg.String (fun file ->
 			add_native_lib file false;
 		),"<file>","add the SWF library to the compiled SWF");
-		("Target-specific",["--neko-lib-path"],[],Arg.String (fun dir ->
+		("Target-specific",[],["--neko-lib-path"],Arg.String (fun dir ->
 			com.neko_lib_paths <- dir :: com.neko_lib_paths
 		),"<directory>","add the neko library path");
 		("Target-specific",["--swf-lib-extern"],["-swf-lib-extern"],Arg.String (fun file ->