8000 Fix publishing of NuGet pre-release packages · odedw/libgit2sharp@cbbafb6 · GitHub
[go: up one dir, main page]

Skip to content

Commit cbbafb6

Browse files
committed
Fix publishing of NuGet pre-release packages
1 parent 5dc5968 commit cbbafb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ install:
5757
Write-Host "Should run Coverity analysis = " -NoNewLine
5858
Write-Host $Env:SHOULD_RUN_COVERITY_ANALYSIS -ForegroundColor "Green"
5959
60-
$Env:SHOULD_PACKAGE_NUGET_ARTIFACT = $($Env:APPVEYOR_PULL_REQUEST_NUMBER -eq $null `
61-
-and $Env:APPVEYOR_SCHEDULED_BUILD -eq $False)
60+
$Env:SHOULD_PACKAGE_NUGET_ARTIFACT = $($($Env:APPVEYOR_PULL_REQUEST_NUMBER -eq $null) `
61+
-and $($Env:APPVEYOR_SCHEDULED_BUILD -eq $False))
6262
Write-Host "Should package Nuget artifact = " -NoNewLine
6363
Write-Host $Env:SHOULD_PACKAGE_NUGET_ARTIFACT -ForegroundColor "Green"
6464

0 commit comments

Comments
 (0)
0