From 8d6c617875e08f55fa122a4e80bd944862c2c423 Mon Sep 17 00:00:00 2001 From: Rangi Date: Thu, 4 Dec 2025 17:56:16 -0500 Subject: [PATCH] Use 4 spaces per tab in LCOV coverage report --- contrib/coverage.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/coverage.bash b/contrib/coverage.bash index 030a2824..46fd1adf 100755 --- a/contrib/coverage.bash +++ b/contrib/coverage.bash @@ -22,7 +22,7 @@ mkdir -p coverage COVERAGE_INFO=coverage/coverage.info lcov -c --no-external -d . -o "$COVERAGE_INFO" lcov -r "$COVERAGE_INFO" src/asm/parser.{hpp,cpp} src/link/script.{hpp,cpp} -o "$COVERAGE_INFO" -genhtml --dark-mode -f -s -o coverage/ "$COVERAGE_INFO" +genhtml --dark-mode --num-spaces 4 -f -s -o coverage/ "$COVERAGE_INFO" # Check whether running from coverage.yml workflow if [ "$1" != "ubuntu-ci" ]; then