From 90564499addda8d22218c182e735aaef34f405bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Tue, 2 Feb 2016 22:16:17 +0100 Subject: [PATCH] Fixed coverage paths in html files (the path given to raco cover -d shouldn't start with ./, otherwise simplify-path transforms it into an absolute path) --- graph-lib/make/make.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph-lib/make/make.rkt b/graph-lib/make/make.rkt index 28ca16c..2e6cb69 100644 --- a/graph-lib/make/make.rkt +++ b/graph-lib/make/make.rkt @@ -216,7 +216,7 @@ (run! `(,(find-executable-path-or-fail "raco") "cover" - "-d" "./docs/coverage" + "-d" "docs/coverage" "-s" "doc" "-s" "test" "-f" "html"