File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -254,16 +254,16 @@ let () =
254
254
~argv: bsb_args
255
255
~start: 1
256
256
bsb_main_flags handle_anonymous_arg ;
257
- let config_opt = lazy
257
+ let config_opt =
258
258
(Bsb_ninja_regen. regenerate_ninja
259
259
~toplevel_package_specs: None
260
260
~per_proj_dir: Bsb_global_paths. cwd
261
261
~forced: ! force_regenerate) in
262
262
(* [-make-world] should never be combined with [-package-specs] *)
263
263
if ! make_world then
264
- Bsb_world. make_world_deps Bsb_global_paths. cwd (Lazy. force config_opt) ninja_args;
264
+ Bsb_world. make_world_deps Bsb_global_paths. cwd ( config_opt) ninja_args;
265
265
if ! do_install then
266
- install_target (Lazy. force config_opt);
266
+ install_target ( config_opt);
267
267
if ! watch_mode then program_exit ()
268
268
else ninja_command_exit ninja_args
269
269
end
Original file line number Diff line number Diff line change @@ -17036,16 +17036,16 @@ let () =
17036
17036
~argv:bsb_args
17037
17037
~start:1
17038
17038
bsb_main_flags handle_anonymous_arg ;
17039
- let config_opt = lazy
17039
+ let config_opt =
17040
17040
(Bsb_ninja_regen.regenerate_ninja
17041
17041
~toplevel_package_specs:None
17042
17042
~per_proj_dir:Bsb_global_paths.cwd
17043
17043
~forced:!force_regenerate) in
17044
17044
(* [-make-world] should never be combined with [-package-specs] *)
17045
17045
if !make_world then
17046
- Bsb_world.make_world_deps Bsb_global_paths.cwd (Lazy.force config_opt) ninja_args;
17046
+ Bsb_world.make_world_deps Bsb_global_paths.cwd ( config_opt) ninja_args;
17047
17047
if !do_install then
17048
- install_target (Lazy.force config_opt);
17048
+ install_target ( config_opt);
17049
17049
if !watch_mode then program_exit ()
17050
17050
else ninja_command_exit ninja_args
17051
17051
end
Original file line number Diff line number Diff line change @@ -17211,16 +17211,16 @@ let () =
17211
17211
~argv:bsb_args
17212
17212
~start:1
17213
17213
bsb_main_flags handle_anonymous_arg ;
17214
- let config_opt = lazy
17214
+ let config_opt =
17215
17215
(Bsb_ninja_regen.regenerate_ninja
17216
17216
~toplevel_package_specs:None
17217
17217
~per_proj_dir:Bsb_global_paths.cwd
17218
17218
~forced:!force_regenerate) in
17219
17219
(* [-make-world] should never be combined with [-package-specs] *)
17220
17220
if !make_world then
17221
- Bsb_world.make_world_deps Bsb_global_paths.cwd (Lazy.force config_opt) ninja_args;
17221
+ Bsb_world.make_world_deps Bsb_global_paths.cwd ( config_opt) ninja_args;
17222
17222
if !do_install then
17223
- install_target (Lazy.force config_opt);
17223
+ install_target ( config_opt);
17224
17224
if !watch_mode then program_exit ()
17225
17225
else ninja_command_exit ninja_args
17226
17226
end
You can’t perform that action at this time.
0 commit comments