Skip to content

Commit

Permalink
Set Codecov tool path manually for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharparam committed Aug 1, 2019
1 parent 29d159a commit ce7b640
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ Task("Codecov")
.Does(() =>
{
var ccVersion = $"{version.FullSemVer}.build.{BuildSystem.AppVeyor.Environment.Build.Version}";
var codecovPath = Context.Tools.Resolve("codecov.exe");
Information("Running Codecov tool with version {0} on OpenCover result", ccVersion);
Expand All @@ -360,7 +361,8 @@ Task("Codecov")
{
["APPVEYOR_BUILD_VERSION"] = ccVersion
},
Verbose = true
Verbose = true,
ToolPath = codecovPath
});
});

Expand Down

0 comments on commit ce7b640

Please sign in to comment.