@@ -761,7 +761,7 @@ To avoid this problem, you can use `Eio.Exn.Backend.show`
761761
762762to hide the backend-specific part of errors:
763763
764- <!-- $MDX skip -->
764+ <!-- $MDX os_type<>Win32 -->
765765``` ocaml
766766# Eio_main.run @@ fun env ->
767767 let net = Eio.Stdenv.net env in
@@ -897,7 +897,7 @@ perhaps with `open_dir` to constrain all access to be within that directory.
897897
898898Spawning a child process can be done using the [ Eio.Process] [ ] module:
899899
900- <!-- $MDX non-deterministic=command -->
900+ <!-- $MDX os_type<>Win32 -->
901901``` ocaml
902902# Eio_main.run @@ fun env ->
903903 let proc_mgr = Eio.Stdenv.process_mgr env in
@@ -909,7 +909,7 @@ hello
909909There are various optional arguments for setting the process's current directory or connecting up the standard streams.
910910For example, we can use ` tr ` to convert some text to upper-case:
911911
912- <!-- $MDX non-deterministic=command -->
912+ <!-- $MDX os_type<>Win32 -->
913913``` ocaml
914914# Eio_main.run @@ fun env ->
915915 let proc_mgr = Eio.Stdenv.process_mgr env in
@@ -922,7 +922,7 @@ ONE TWO THREE
922922If you want to capture the output of a process, you can provide a suitable ` Eio.Flow.sink ` as the ` stdout ` argument,
923923or use the ` parse_out ` convenience wrapper:
924924
925- <!-- $MDX non-deterministic=command -->
925+ <!-- $MDX os_type<>Win32 -->
926926``` ocaml
927927# Eio_main.run @@ fun env ->
928928 let proc_mgr = Eio.Stdenv.process_mgr env in
@@ -932,7 +932,7 @@ or use the `parse_out` convenience wrapper:
932932
933933All process functions either return the exit status or check that it was zero (success):
934934
935- <!-- $MDX non-deterministic=command -->
935+ <!-- $MDX os_type<>Win32 -->
936936``` ocaml
937937# Eio_main.run @@ fun env ->
938938 let proc_mgr = Eio.Stdenv.process_mgr env in
0 commit comments