Skip to content

Commit f5b62ea

Browse files
committed
Fix incorrect nupkg filename in artifact script.
1 parent 22a238d commit f5b62ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

create_artifacts.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if ($Configuration -eq "Release" -And $Platform -eq "Any CPU")
3939
{
4040
Write-Host "Creating NuGet package"
4141
nuget.exe --% pack Corale.Colore\Corale.Colore.csproj -Prop Configuration=Release -Prop Platform=AnyCPU -Version "%APPVEYOR_BUILD_VERSION%"
42-
$name = "Corale.Colore.$Env:APPVEYOR_BUILD_VERSION"
42+
$name = "Colore.$Env:APPVEYOR_BUILD_VERSION"
4343
$file = "$name.nupkg"
4444
Push-AppveyorArtifact $file -DeploymentName "nuget_package"
4545
}

0 commit comments

Comments
 (0)