Skip to content

Commit 7abbbff

Browse files
committed
refs or cleanup
1 parent 8036db5 commit 7abbbff

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
@@ -24,7 +24,12 @@ build_script:
2424
- dotnet build src --configuration Release
2525
- dotnet test src --configuration Release --no-build --no-restore
2626
on_failure:
27-
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
27+
- ps: |
28+
$root = (Get-Location).Path
29+
Get-ChildItem *.received.* -Recurse | % {
30+
$rel = $_.FullName.Substring($root.Length + 1)
31+
Push-AppveyorArtifact $_.FullName -FileName $rel
32+
}
2833
test: off
2934
artifacts:
3035
- path: nugets\*.nupkg

0 commit comments

Comments
 (0)