From 68354389ff1e3bf3f18572f1cc6cc1bbfb8986c7 Mon Sep 17 00:00:00 2001 From: Kate Date: Fri, 27 Jan 2023 14:31:15 +0000 Subject: [PATCH] fixup! Hackish workaround for https://github.com/ocurrent/obuilder/issues/77 --- lib/opam_build.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/opam_build.ml b/lib/opam_build.ml index 26f26b62..4caa1887 100644 --- a/lib/opam_build.ml +++ b/lib/opam_build.ml @@ -41,7 +41,7 @@ let opam_install ~variant ~opam_version ~pin ~lower_bounds ~with_tests ~pkg = (if with_tests then [ (* TODO: Remove this hack when https://github.com/ocurrent/obuilder/issues/77 is fixed *) (* NOTE: This hack will fail for packages that have src: "git+https://..." *) - run ~cache ~network "((%sopam reinstall --with-test %s) > /dev/null 2>&1 ; echo \"exit code: $?\") || true" + run ~cache ~network "(%sopam reinstall --with-test %s) || true" (match opam_version with `V2_1 | `Dev -> "" | `V2_0 -> fmt "opam depext%s %s && " with_tests_opt pkg) pkg ] else []) @ [ (* TODO: Replace by two calls to opam install + opam install -t using the OPAMDROPINSTALLEDPACKAGES feature *)