Skip to content

Commit

Permalink
fix: powershell bug (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshor committed Dec 14, 2019
1 parent be60c2f commit c8e6fdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ build_script:

on_success:
- ps: >-
if (($env:APPVEYOR_REPO_BRANCH -eq 'master') -and ($env:APPVEYOR_PULL_REQUEST_NUMBER -eq '')) {
if (($env:APPVEYOR_REPO_BRANCH -eq 'master') -and ($env:APPVEYOR_PULL_REQUEST_NUMBER -eq $NULL)) {
./scripts/appveyor.ps1 -ErrorActionPreference 'SilentlyContinue'
} else {
echo "Skipping publishing stage. Branch '$env:APPVEYOR_REPO_BRANCH' -- 'PR $env:APPVEYOR_PULL_REQUEST_NUMBER'"
echo "Skipping publishing stage. Branch '$env:APPVEYOR_REPO_BRANCH' -- PR '$env:APPVEYOR_PULL_REQUEST_NUMBER'"
}
platform:
Expand Down

0 comments on commit c8e6fdf

Please sign in to comment.