Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-19 23:10:38 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-19 23:10:38 +0300
commit7bcba4e9bc0532ddf10497f388c2fa0098cad87a (patch)
tree87fd51c7ba49fe586539143a2ba1674846acbce6 /scripts
parent4909cf320f995b2dcbb64b9083b084be3e2ae778 (diff)
[ci] Remove -f option from genhtml during code coverage
It needs some cpan modules to be installed which is a pain on OSX.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/collect-coverage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/collect-coverage.sh b/scripts/ci/collect-coverage.sh
index 6fdb428d7dd..0d33f804a13 100755
--- a/scripts/ci/collect-coverage.sh
+++ b/scripts/ci/collect-coverage.sh
@@ -15,7 +15,7 @@ mkdir "$COV_DIR"
scripts/ci/run-step.sh --label=coverage-lcov --timeout=20m lcov --no-external -c -d mono -d support -d tools -o "$COV_INFO"
# Generate HTML coverage report in the lcov directory at the root of the project.
-scripts/ci/run-step.sh --label=coverage-genhtml --timeout=20m genhtml -f -s "$COV_INFO" -o lcov
+scripts/ci/run-step.sh --label=coverage-genhtml --timeout=20m genhtml -s "$COV_INFO" -o lcov
# Make the paths relative so that they could be assembled from different Jenkins workspaces.
sed -Eie "s#^SF:$WORKSPACE/?#SF:#" "$COV_INFO"