You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building git HEAD with OCaml 5.0, I see this:
File "utils.ml", line 70, characters 23-73:
70 | try let _ = List.find (fun n -> Filesystem.exists (n p)) names in true
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Warning 5 [ignored-partial-application]: this function application is partial,
maybe some arguments are missing.
Perhaps the (n p) on line 70 should be (p </> n)? And on line 73, perhaps (fun n -> n (List.hd paths)) should be (fun n -> (List.hd paths) </> n)?
The text was updated successfully, but these errors were encountered:
When building git HEAD with OCaml 5.0, I see this:
Perhaps the
(n p)
on line 70 should be(p </> n)
? And on line 73, perhaps(fun n -> n (List.hd paths))
should be(fun n -> (List.hd paths) </> n)
?The text was updated successfully, but these errors were encountered: