Skip to content

Commit

Permalink
Added trailing back tick to AppVeyor fast-fail
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodegard committed Nov 16, 2016
1 parent 219c378 commit a1825c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/appveyor-killold.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# reference:
# JuliaLang developers
# (https://github.com/JuliaLang/Example.jl/commit/8a4959122ce843b3664337c8b5119ce3a968c408)
if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds |
if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) {
throw "There are newer queued builds for this pull request, failing early."
}

0 comments on commit a1825c0

Please sign in to comment.