Skip to content

Commit 99d957c

Browse files
authored
Merge pull request #4646 from SoulSniper1212/fix-issue-4635-dotcover-no-longer-works-with-version-2025-2-of-je
Fix issue #4635: Add alternative executable names for DotCover tool
2 parents 5a75a26 + 5459fe8 commit 99d957c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cake.Common/Tools/DotCover/DotCoverTool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected override string GetToolName()
4949
/// <returns>The tool executable name.</returns>
5050
protected override IEnumerable<string> GetToolExecutableNames()
5151
{
52-
return new[] { "dotCover.exe" };
52+
return new[] { "dotCover.exe", "dotCover", "dotcover" };
5353
}
5454

5555
/// <summary>

0 commit comments

Comments
 (0)