The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #820 from talex5/exec-path

Eio.Process: match Unix search behaviour

authored by

Thomas Leonard and committed by
GitHub
7695d223 989fc81e

+1 -1
+1 -1
lib_eio/unix/process.ml
··· 1 1 open Eio.Std 2 2 3 3 let resolve_program name = 4 - if Filename.is_implicit name then ( 4 + if not (String.contains name '/') then ( 5 5 Sys.getenv_opt "PATH" 6 6 |> Option.value ~default:"/bin:/usr/bin" 7 7 |> String.split_on_char ':'