From 4c42865ca7f5c42f643b1bd9c9248b46f8ad0280 Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Tue, 3 Aug 2021 15:12:53 +0200 Subject: [PATCH] fix compilation --- lib/model.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/model.ml b/lib/model.ml index 95ecd41..3104d7b 100644 --- a/lib/model.ml +++ b/lib/model.ml @@ -253,7 +253,7 @@ let infer_section_and_synopsis name artifacts = List.find_opt (fun (affix, _) -> Astring.String.is_infix ~affix name) map with | None -> None - | Some (_, os) -> os ^ " Packages" + | Some (_, os) -> Some (os ^ " Packages") in match opam_switch with | None -> None, (None, None)