Skip to content

Commit 40991b1

Browse files
committed
clean
1 parent 127c693 commit 40991b1

File tree

3 files changed

+18
-20
lines changed

3 files changed

+18
-20
lines changed

jscomp/bsb/bsb_clean.ml

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,33 +29,33 @@ let (//) = Ext_path.combine
2929
let ninja_clean bsc_dir proj_dir =
3030
try
3131
let cmd = bsc_dir // "ninja.exe" in
32-
let cwd = proj_dir // Bsb_config.lib_bs in
32+
let cwd = proj_dir // Bsb_config.lib_bs in
3333
if Sys.file_exists cwd then
3434
let eid =
35-
(Bsb_unix.run_command_execv { cmd ; args = [|cmd; "-t"; "clean"|] ; cwd }) in
35+
Bsb_unix.run_command_execv {cmd ; args = [|cmd; "-t"; "clean"|] ; cwd} in
3636
if eid <> 0 then
3737
Bsb_log.warn "@{<warning>ninja clean failed@}@."
3838
with e ->
3939
Bsb_log.warn "@{<warning>ninja clean failed@} : %s @." (Printexc.to_string e)
4040

4141
let clean_bs_garbage bsc_dir proj_dir =
4242
Bsb_log.info "@{<info>Cleaning:@} in %s@." proj_dir ;
43-
let aux x =
44-
let x = (proj_dir // x) in
43+
let try_remove x =
44+
let x = proj_dir // x in
4545
if Sys.file_exists x then
4646
Bsb_unix.remove_dir_recursive x in
4747
try
4848
ninja_clean bsc_dir proj_dir ;
49-
List.iter aux Bsb_config.all_lib_artifacts;
49+
List.iter try_remove Bsb_config.all_lib_artifacts;
5050
with
5151
e ->
5252
Bsb_log.warn "@{<warning>Failed@} to clean due to %s" (Printexc.to_string e)
5353

5454

5555
let clean_bs_deps bsc_dir proj_dir =
56-
Bsb_build_util.walk_all_deps proj_dir (fun { cwd} ->
56+
Bsb_build_util.walk_all_deps proj_dir (fun pkg_cxt ->
5757
(* whether top or not always do the cleaning *)
58-
clean_bs_garbage bsc_dir cwd
58+
clean_bs_garbage bsc_dir pkg_cxt.cwd
5959
)
6060

6161
let clean_self bsc_dir proj_dir = clean_bs_garbage bsc_dir proj_dir

jscomp/bsb/bsb_parse_sources.ml

+2-3
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ let extract_generators
173173
begin match String_map.find_opt Bsb_build_schemas.generators input with
174174
| Some (Arr { content ; loc_start}) ->
175175
(* Need check is dev build or not *)
176-
for i = 0 to Array.length content - 1 do
177-
let x = Array.unsafe_get content i in
176+
Array.iter begin fun (x : Ext_json_types.t) ->
178177
match x with
179178
| Obj { map = generator; loc} ->
180179
begin match String_map.find_opt Bsb_build_schemas.name generator,
@@ -201,7 +200,7 @@ let extract_generators
201200
Bsb_exception.errorf ~loc "Invalid generator format"
202201
end
203202
| _ -> Bsb_exception.errorf ~loc:(Ext_json.loc_of x) "Invalid generator format"
204-
done ;
203+
end content
205204
| Some x -> Bsb_exception.errorf ~loc:(Ext_json.loc_of x ) "Invalid generator format"
206205
| None -> ()
207206
end ;

lib/bsb.ml

+9-10
Original file line numberDiff line numberDiff line change
@@ -6378,33 +6378,33 @@ let (//) = Ext_path.combine
63786378
let ninja_clean bsc_dir proj_dir =
63796379
try
63806380
let cmd = bsc_dir // "ninja.exe" in
6381-
let cwd = proj_dir // Bsb_config.lib_bs in
6381+
let cwd = proj_dir // Bsb_config.lib_bs in
63826382
if Sys.file_exists cwd then
63836383
let eid =
6384-
(Bsb_unix.run_command_execv { cmd ; args = [|cmd; "-t"; "clean"|] ; cwd }) in
6384+
Bsb_unix.run_command_execv {cmd ; args = [|cmd; "-t"; "clean"|] ; cwd} in
63856385
if eid <> 0 then
63866386
Bsb_log.warn "@{<warning>ninja clean failed@}@."
63876387
with e ->
63886388
Bsb_log.warn "@{<warning>ninja clean failed@} : %s @." (Printexc.to_string e)
63896389

63906390
let clean_bs_garbage bsc_dir proj_dir =
63916391
Bsb_log.info "@{<info>Cleaning:@} in %s@." proj_dir ;
6392-
let aux x =
6393-
let x = (proj_dir // x) in
6392+
let try_remove x =
6393+
let x = proj_dir // x in
63946394
if Sys.file_exists x then
63956395
Bsb_unix.remove_dir_recursive x in
63966396
try
63976397
ninja_clean bsc_dir proj_dir ;
6398-
List.iter aux Bsb_config.all_lib_artifacts;
6398+
List.iter try_remove Bsb_config.all_lib_artifacts;
63996399
with
64006400
e ->
64016401
Bsb_log.warn "@{<warning>Failed@} to clean due to %s" (Printexc.to_string e)
64026402

64036403

64046404
let clean_bs_deps bsc_dir proj_dir =
6405-
Bsb_build_util.walk_all_deps proj_dir (fun { cwd} ->
6405+
Bsb_build_util.walk_all_deps proj_dir (fun pkg_cxt ->
64066406
(* whether top or not always do the cleaning *)
6407-
clean_bs_garbage bsc_dir cwd
6407+
clean_bs_garbage bsc_dir pkg_cxt.cwd
64086408
)
64096409

64106410
let clean_self bsc_dir proj_dir = clean_bs_garbage bsc_dir proj_dir
@@ -9993,8 +9993,7 @@ let extract_generators
99939993
begin match String_map.find_opt Bsb_build_schemas.generators input with
99949994
| Some (Arr { content ; loc_start}) ->
99959995
(* Need check is dev build or not *)
9996-
for i = 0 to Array.length content - 1 do
9997-
let x = Array.unsafe_get content i in
9996+
Array.iter begin fun (x : Ext_json_types.t) ->
99989997
match x with
99999998
| Obj { map = generator; loc} ->
100009999
begin match String_map.find_opt Bsb_build_schemas.name generator,
@@ -10021,7 +10020,7 @@ let extract_generators
1002110020
Bsb_exception.errorf ~loc "Invalid generator format"
1002210021
end
1002310022
| _ -> Bsb_exception.errorf ~loc:(Ext_json.loc_of x) "Invalid generator format"
10024-
done ;
10023+
end content
1002510024
| Some x -> Bsb_exception.errorf ~loc:(Ext_json.loc_of x ) "Invalid generator format"
1002610025
| None -> ()
1002710026
end ;

0 commit comments

Comments
 (0)