Skip to content

Commit fbcd293

Browse files
author
Gary Ewan Park
committed
(GH-29) Try using Convert-Path
- To correct error with pushing AppVeyor Artifacts. - As suggested by Feodor here: http://help.appveyor.com/discussions/problems/1773-nupkg-file-not-found
1 parent d8c55f4 commit fbcd293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BuildScripts/default.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ Task -Name PackageChocolatey -Description "Packs the module and example package"
636636

637637
if(Test-Path $nugetPath) {
638638
Write-Output "Pushing artifact to AppVeyor...";
639-
Push-AppveyorArtifact $nugetPath;
639+
Push-AppveyorArtifact (Convert-Path $nugetPath);
640640
Write-Output "AppVeyor Upload completed.";
641641
} else {
642642
Write-Output "Unable to find path of artifact, so can't upload."

0 commit comments

Comments
 (0)