Nicolas Cannasse 18 년 전
부모
커밋
1c90840ea4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      genneko.ml

+ 1 - 1
genneko.ml

@@ -757,7 +757,7 @@ let generate file types hres libs =
 	end;
 	w();
 	let c = Plugin.timer "neko compilation" in
-	if command ("nekoc " ^ (if !Plugin.times then "-time " else "") ^ "\"" ^ neko_file ^ "\"") <> 0 then failwith "Neko compilation failure";
+	if command ("nekoc \"" ^ neko_file ^ "\"") <> 0 then failwith "Neko compilation failure";
 	c();
 	let output = Filename.chop_extension neko_file ^ ".n" in
 	if output <> file then Sys.rename output file;