Skip to content

Commit 9542e2c

Browse files
committed
WIP
1 parent 6fd3917 commit 9542e2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testsuite/ocamlbuild_test.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ let sys_command cmd =
4848

4949
let rm f =
5050
if exists f then
51-
ignore(sys_command (Printf.sprintf "rm -r %s" f))
51+
ignore(Sys.command (Printf.sprintf "rm -r %s" f))
5252

5353
module Match = struct
5454

@@ -462,7 +462,7 @@ let run ~root =
462462

463463
let copy l dest =
464464
mkdir_p dest;
465-
List.iter (fun f -> ignore(sys_command (Printf.sprintf "cp %s/%s %s" build_tree f dest))) l
465+
List.iter (fun f -> ignore(Sys.command (Printf.sprintf "cp %s/%s %s" build_tree f dest))) l
466466
in
467467
let ocamlbuild = Printf.sprintf "%s/ocamlbuild.byte" install_bin_dir in
468468
copy

0 commit comments

Comments
 (0)