From ad2e8a3c96e016fd320b9cc691b4a2e7685456e9 Mon Sep 17 00:00:00 2001 From: bao-qian Date: Mon, 9 May 2016 03:26:19 +0100 Subject: [PATCH] fix ci --- Deploy/squirrel_installer.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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