Monorepo management for opam overlays
0
fork

Configure Feed

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

monopam quality: fix tree hash lookup — use relative repo path

open_repo with absolute path doubled with Eio.Stdenv.cwd. Use
Fpath.v "." to open the repo at the current working directory.

Tree hash now shows correctly: e.g. ocaml-crdt = 6a8ab05c

+1 -1
+1 -1
bin/cmd_quality.ml
··· 5 5 Eio_main.run @@ fun env -> 6 6 let fs = Eio.Stdenv.cwd env in 7 7 Eio.Switch.run @@ fun sw -> 8 - let monorepo = Fpath.v root in 8 + let monorepo = Fpath.v "." in 9 9 let repo = Git.Repository.open_repo ~sw ~fs monorepo in 10 10 match package with 11 11 | Some name ->