Skip to content

Commit 703532a

Browse files
committed
refs or cleanup
1 parent 54b2422 commit 703532a

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
@@ -13,4 +13,9 @@ test: off
1313
artifacts:
1414
- path: nugets\*.nupkg
1515
on_failure:
16-
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
16+
- ps: |
17+
$root = (Get-Location).Path
18+
Get-ChildItem *.received.* -Recurse | % {
19+
$rel = $_.FullName.Substring($root.Length + 1)
20+
Push-AppveyorArtifact $_.FullName -FileName $rel
21+
}

0 commit comments

Comments
 (0)