From c92e41ee564f36470511b2d093c1e00ae66078d4 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Thu, 23 May 2024 07:34:10 +0100 Subject: [PATCH] chore(justfile): Don't directly open coverage report --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 1495958..4441466 100644 --- a/justfile +++ b/justfile @@ -18,6 +18,6 @@ start-ngrok: ngrok http --domain=${NGROK_DOMAIN} 8080 fi -coverage: +coverage-update: cargo tarpaulin --lib --out html - open tarpaulin-report.html + echo "Now:\n\topen tarpaulin-report.html"