We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fd3917 commit 9542e2cCopy full SHA for 9542e2c
testsuite/ocamlbuild_test.ml
@@ -48,7 +48,7 @@ let sys_command cmd =
48
49
let rm f =
50
if exists f then
51
- ignore(sys_command (Printf.sprintf "rm -r %s" f))
+ ignore(Sys.command (Printf.sprintf "rm -r %s" f))
52
53
module Match = struct
54
@@ -462,7 +462,7 @@ let run ~root =
462
463
let copy l dest =
464
mkdir_p dest;
465
- List.iter (fun f -> ignore(sys_command (Printf.sprintf "cp %s/%s %s" build_tree f dest))) l
+ List.iter (fun f -> ignore(Sys.command (Printf.sprintf "cp %s/%s %s" build_tree f dest))) l
466
in
467
let ocamlbuild = Printf.sprintf "%s/ocamlbuild.byte" install_bin_dir in
468
copy
0 commit comments