Skip to content

Commit a73e747

Browse files
committed
refs or cleanup
1 parent ce3a6c9 commit a73e747

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
@@ -26,7 +26,12 @@ build_script:
2626
- dotnet test src --configuration Release --no-build --no-restore
2727

2828
on_failure:
29-
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
29+
- ps: |
30+
$root = (Get-Location).Path
31+
Get-ChildItem *.received.* -Recurse | % {
32+
$rel = $_.FullName.Substring($root.Length + 1)
33+
Push-AppveyorArtifact $_.FullName -FileName $rel
34+
}
3035
test: off
3136
artifacts:
3237
- path: nugets\*.nupkg

0 commit comments

Comments
 (0)