summaryrefslogtreecommitdiff
path: root/src/Translate.ml
diff options
context:
space:
mode:
authorSon Ho2022-05-10 14:15:34 +0200
committerSon Ho2022-05-10 14:15:34 +0200
commit5587701ef0015563b175c1a06517fca822e310c4 (patch)
tree887dd68e4b909042d36ae73d31e70700c2a7991c /src/Translate.ml
parentc42b8de26e46d98d2dc0732888dc82f89102fb3e (diff)
Use the core_unix package instead of core
Diffstat (limited to '')
-rw-r--r--src/Translate.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Translate.ml b/src/Translate.ml
index 740670f9..57b92e44 100644
--- a/src/Translate.ml
+++ b/src/Translate.ml
@@ -685,7 +685,7 @@ let translate_module (filename : string) (dest_dir : string) (config : config)
if not (Sys.file_exists dest_dir) then (
log#linfo (lazy ("Creating missing directory: " ^ dest_dir));
(* Create a directory with *default* permissions *)
- Core.Unix.mkdir_p dest_dir);
+ Core_unix.mkdir_p dest_dir);
(* Copy "Primitives.fst" - I couldn't find a "cp" function in the OCaml
* libraries... *)