Skip to content

Commit 9174a08

Browse files
committed
refs or cleanup
1 parent 6b4d714 commit 9174a08

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

appveyor.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ build_script:
2727
dotnet publish src/DiffEngine.AotTests/DiffEngine.AotTests.csproj --configuration Release-NotWindows
2828
}
2929
on_failure:
30-
- ps: Get-ChildItem *.received.* -recurse | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
30+
- ps: |
31+
$root = (Get-Location).Path
32+
Get-ChildItem *.received.* -Recurse | % {
33+
$rel = $_.FullName.Substring($root.Length + 1)
34+
Push-AppveyorArtifact $_.FullName -FileName $rel
35+
}
3136
test: off
3237
artifacts:
3338
- path: nugets\*.nupkg

0 commit comments

Comments
 (0)