Skip to content

Commit

Permalink
Fix another 'You cannot call a method' error
Browse files Browse the repository at this point in the history
  • Loading branch information
vadi2 committed Nov 14, 2020
1 parent 2a60263 commit 72138ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CI/set-build-info.ps1
Expand Up @@ -4,7 +4,7 @@ $Script:BuildFolder = If (Test-Path Env:APPVEYOR_BUILD_FOLDER) { $Env:APPVEYOR_B

Set-Location $Script:BuildFolder

if ($Env:APPVEYOR_REPO_TAG -ne "true" -and -not (Test-Path Env:GITHUB_REF - and $Env:GITHUB_REF.StartsWith("refs/tags/"))) {
if ($Env:APPVEYOR_REPO_TAG -ne "true" -and -not ((Test-Path Env:GITHUB_REF) -and $Env:GITHUB_REF.StartsWith("refs/tags/"))) {
# The only scheduled builds are public test builds
if ($Env:APPVEYOR_SCHEDULED_BUILD -eq "True" -or $Env:GITHUB_EVENT_NAME -eq "schedule") {
$Env:MUDLET_VERSION_BUILD = "-ptb"
Expand Down

0 comments on commit 72138ea

Please sign in to comment.