Skip to content

Commit 62b5463

Browse files
committed
refs or cleanup
1 parent ca30fa5 commit 62b5463

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/appveyor.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ build_script:
2727
- dotnet test src --configuration Release --no-build --no-restore
2828
test: off
2929
on_failure:
30-
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
30+
- ps: |
31+
$root = (Get-Location).Path
32+
Get-ChildItem *.received.* -Recurse | % {
33+
$rel = $_.FullName.Substring($root.Length + 1)
34+
Push-AppveyorArtifact $_.FullName -FileName $rel
35+
}
3136
artifacts:
3237
- path: nugets\*.nupkg

0 commit comments

Comments
 (0)