Skip to content

Commit 32846ec

Browse files
committed
refs or cleanup
1 parent 793776d commit 32846ec

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
@@ -11,6 +11,11 @@ build_script:
1111
- dotnet test src --configuration Release --no-build --no-restore
1212
test: off
1313
on_failure:
14-
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
14+
- ps: |
15+
$root = (Get-Location).Path
16+
Get-ChildItem *.received.* -Recurse | % {
17+
$rel = $_.FullName.Substring($root.Length + 1)
18+
Push-AppveyorArtifact $_.FullName -FileName $rel
19+
}
1520
artifacts:
1621
- path: nugets\*.nupkg

0 commit comments

Comments
 (0)