From 621933fb51565d2c9ee4a2192b91db4b0fc24287 Mon Sep 17 00:00:00 2001 From: rand00 Date: Mon, 11 Apr 2022 00:22:28 +0200 Subject: [PATCH] Changed name of binary to opam-graph, to be consistent with existing tools --- app/dune | 2 +- app/main.ml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/dune b/app/dune index 2fe3b23..1a70a81 100644 --- a/app/dune +++ b/app/dune @@ -1,4 +1,4 @@ (executable (name main) - (public_name opam_graph) + (public_name opam-graph) (libraries cmdliner logs logs.fmt fmt.cli fmt.tty logs.cli opam-graph)) diff --git a/app/main.ml b/app/main.ml index 66f12ea..5ba8a26 100644 --- a/app/main.ml +++ b/app/main.ml @@ -78,7 +78,7 @@ let file = let cmd = let term = Term.(const jump $ setup_log $ transitive $ file $ output_format) in - let info = Cmd.info "opam_graph" ~version:"%%VERSION%%" in + let info = Cmd.info "opam-graph" ~version:"%%VERSION%%" in Cmd.v info term let () = Cmd.eval cmd |> exit