Skip to content

Commit 79d06db

Browse files
committed
refs or cleanup
1 parent 2b57988 commit 79d06db

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

0 commit comments

Comments
 (0)