diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-29 13:17:26 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-29 13:38:38 +0200 |
commit | 5c38e4216174f21362058a1a77938f5a63e2ffef (patch) | |
tree | 0bc242d8e81e9165837bf284be775564de680341 /.gitignore | |
parent | 247c3548d810136ffe9c1694cd76db3236efaa90 (diff) | |
download | redot-engine-5c38e4216174f21362058a1a77938f5a63e2ffef.tar.gz |
Remove too greedy GCOV ignores from `.gitignore`
This would cause `updown.png` to be ignored in our default theme in 3.x.
These ignores were added in #36800 for #36572 (see that PR for usage
instructions).
From a quick test, using `--output-file` for `lcov` and `--output-directory`
for genhtml let us output the files in a way that won't conflict with the
Git repository (e.g. in `bin/`, or outside the Git repo).
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/.gitignore b/.gitignore index 060f5696b8..61ea171b8b 100644 --- a/.gitignore +++ b/.gitignore @@ -132,23 +132,9 @@ cppcheck-cppcheck-build-dir/ *.pydevproject *.launch -# Gcov and Lcov code coverage -*.gcno +# GCOV code coverage *.gcda -*.gcov.html -*.func.html -*.func-sort-c.html -*index-sort-f.html -*index-sort-l.html -*index.html -godot.info -amber.png -emerald.png -glass.png -ruby.png -snow.png -updown.png -gcov.css +*.gcno # Geany *.geany |