fix stderr

This commit is contained in:
Mylloon 2023-05-13 15:23:55 +02:00
parent 685412114c
commit be1fe34aa9
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -62,7 +62,7 @@ let run_process path args =
let out_channel = open_out output_file in
let output_fd = Unix.descr_of_out_channel out_channel in
let pid =
Unix.create_process command (Array.of_list args) output_fd output_fd Unix.stdin
Unix.create_process command (Array.of_list args) output_fd output_fd output_fd
in
out_channel, pid
;;