@@ -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
@@ -887,7 +887,7 @@ perhaps with `open_dir` to constrain all access to be within that directory.
887887
888888Spawning a child process can be done using the [ Eio.Process] [ ] module:
889889
890- <!-- $MDX non-deterministic=command -->
890+ <!-- $MDX os_type<>Win32 -->
891891``` ocaml
892892# Eio_main.run @@ fun env ->
893893 let proc_mgr = Eio.Stdenv.process_mgr env in
@@ -899,7 +899,7 @@ hello
899899There are various optional arguments for setting the process's current directory or connecting up the standard streams.
900900For example, we can use ` tr ` to convert some text to upper-case:
901901
902- <!-- $MDX non-deterministic=command -->
902+ <!-- $MDX os_type<>Win32 -->
903903``` ocaml
904904# Eio_main.run @@ fun env ->
905905 let proc_mgr = Eio.Stdenv.process_mgr env in
@@ -912,7 +912,7 @@ ONE TWO THREE
912912If you want to capture the output of a process, you can provide a suitable ` Eio.Flow.sink ` as the ` stdout ` argument,
913913or use the ` parse_out ` convenience wrapper:
914914
915- <!-- $MDX non-deterministic=command -->
915+ <!-- $MDX os_type<>Win32 -->
916916``` ocaml
917917# Eio_main.run @@ fun env ->
918918 let proc_mgr = Eio.Stdenv.process_mgr env in
@@ -922,7 +922,7 @@ or use the `parse_out` convenience wrapper:
922922
923923All process functions either return the exit status or check that it was zero (success):
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
0 commit comments