From 54ef125409d65d49d33f799beff81bc7ad536a42 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 15 Aug 2023 03:07:16 +0100 Subject: [PATCH] tests: really fix the script this time --- tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests.sh b/tests.sh index 174cea1..94f05de 100755 --- a/tests.sh +++ b/tests.sh @@ -103,6 +103,7 @@ run_test() { # Delete any pre-existing coverage info from any prev runs if [[ -d "luacov-html" ]]; then rm -r "luacov-html"; fi + if [[ -d ".luacov-html" ]]; then rm -r ".luacov-html"; fi set +e; "${busted_path}" --coverage --no-auto-insulate --pattern ".test.lua" .tests;