diff --git a/Deploy/squirrel_installer.ps1 b/Deploy/squirrel_installer.ps1 index 9d355fb10b..160e062ec4 100644 --- a/Deploy/squirrel_installer.ps1 +++ b/Deploy/squirrel_installer.ps1 @@ -5,7 +5,8 @@ Write-Host "Current path: " + $currentPath $path = $env:APPVEYOR_BUILD_FOLDER + "\Deploy\wox.nuspec" Write-Host "nuspec path: " + $path -& nuget.exe pack $path -Version $env:APPVEYOR_BUILD_VERSION -Properties Configuration=Release +$releasePath = $env:APPVEYOR_BUILD_FOLDER + "\Output\Release" +& nuget.exe pack $path -Version $env:APPVEYOR_BUILD_VERSION -Properties Configuration=Release -BasePath $releasePath $nupkgPath = $env:APPVEYOR_BUILD_FOLDER + "\Wox." + $env:APPVEYOR_BUILD_VERSION + ".nupkg" Write-Host "nupkg path: " + $nupkgPath