From 287e8cefda9c8e105040ed556cac9800e5407896 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Tue, 18 Dec 2018 14:07:42 -0800 Subject: [PATCH] Keep gcno files around to prevent breaking CI builds with a warm target/ cache --- scripts/coverage.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/coverage.sh b/scripts/coverage.sh index 38bbc6f10..94c0df77a 100755 --- a/scripts/coverage.sh +++ b/scripts/coverage.sh @@ -29,7 +29,6 @@ export RUST_BACKTRACE=1 echo "--- remove old coverage results" if [[ -d target/cov ]]; then find target/cov -name \*.gcda -print0 | xargs -0 rm -f - find target/cov -name \*.gcno -print0 | xargs -0 rm -f fi rm -rf target/cov/$reportName