Skip to content

Commit 60591b7

Browse files
authored
Fix path separator for codecov (#712)
* Revert "Run with diagnostic verbosity (#710)" This reverts commit c10543e. * Fix path separator for codecov
1 parent 666d720 commit 60591b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ install:
2929
# Build Script #
3030
#---------------------------------#
3131
build_script:
32-
- ps: .\build.ps1 --target=CI --verbosity=diagnostic
32+
- ps: .\build.ps1 --target=CI
3333

3434
# Tests
3535
test: off

recipe.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ BuildParameters.Tasks.UploadCodecovReportTask
112112
if (coverageFiles.Any())
113113
{
114114
var settings = new CodecovSettings {
115-
Files = coverageFiles.Select(f => f.FullPath),
115+
Files = coverageFiles.Select(f => f.FullPath.Replace("/", "\\")),
116116
NonZero = true,
117117
Token = BuildParameters.Codecov.RepoToken
118118
};

0 commit comments

Comments
 (0)