From 2a92f02b9d2d5e8b0451a597d166a83d0691d3cd Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Tue, 15 Feb 2022 09:27:22 -0700 Subject: [PATCH] fix: dune files %{deps} is expanded into a list so we cannot use it in as a diff? param --- dune | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dune b/dune index 59adf47..453c819 100644 --- a/dune +++ b/dune @@ -1,8 +1,8 @@ (alias (name runtest) - (deps README.md) + (deps (:dep README.md)) (action (progn - (run ocaml-mdx test %{deps}) - (diff? %{deps} %{deps}.corrected)))) + (run ocaml-mdx test %{dep}) + (diff? %{dep} %{dep}.corrected))))