File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -8382,7 +8382,7 @@ let lib_bs = "lib" // "bs"
83828382let lib_amdjs = " lib" // " amdjs"
83838383let lib_goog = " lib" // " goog"
83848384let lib_js = " lib" // " js"
8385-
8385+ let lib_ocaml = " lib " // " ocaml " (* installed binary artifacts *)
83868386let clean_bs_garbage cwd =
83878387 print_string " Doing cleaning in " ;
83888388 print_endline cwd;
@@ -8394,7 +8394,8 @@ let clean_bs_garbage cwd =
83948394 aux lib_bs ;
83958395 aux lib_amdjs ;
83968396 aux lib_goog;
8397- aux lib_js
8397+ aux lib_js ;
8398+ aux lib_ocaml
83988399 with
83998400 e ->
84008401 prerr_endline (" Failed to clean due to " ^ Printexc. to_string e)
Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ let lib_bs = "lib" // "bs"
282282let lib_amdjs = " lib" // " amdjs"
283283let lib_goog = " lib" // " goog"
284284let lib_js = " lib" // " js"
285-
285+ let lib_ocaml = " lib " // " ocaml " (* installed binary artifacts *)
286286let clean_bs_garbage cwd =
287287 print_string " Doing cleaning in " ;
288288 print_endline cwd;
@@ -294,7 +294,8 @@ let clean_bs_garbage cwd =
294294 aux lib_bs ;
295295 aux lib_amdjs ;
296296 aux lib_goog;
297- aux lib_js
297+ aux lib_js ;
298+ aux lib_ocaml
298299 with
299300 e ->
300301 prerr_endline (" Failed to clean due to " ^ Printexc. to_string e)
You can’t perform that action at this time.
0 commit comments