2
0
Nicolas Cannasse 17 жил өмнө
parent
commit
759ff69746
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      main.ml

+ 2 - 1
main.ml

@@ -486,7 +486,8 @@ with
 		if packs = [] && classes = [] then report ("No classes found in " ^ String.concat "." p) Ast.null_pos;
 		report_list (List.map (fun f -> f,"","") (packs @ classes));
 		exit 0;
-	| e -> report (Printexc.to_string e) Ast.null_pos
+	| e when (try Sys.getenv "OCAMLRUNPARAM" <> "b" with _ -> true) ->
+		report (Printexc.to_string e) Ast.null_pos
 
 ;;
 let all = Plugin.timer "other" in