Skip to content

Commit

Permalink
fix: Update deprecated env var (#4451)
Browse files Browse the repository at this point in the history
  • Loading branch information
karaggeorge authored and develar committed Nov 22, 2019
1 parent 8b6580f commit e182787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/builder-util/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export function isPullRequest() {
return value && value !== "false"
}

return isSet(process.env.TRAVIS_PULL_REQUEST) || isSet(process.env.CI_PULL_REQUEST) || isSet(process.env.CI_PULL_REQUESTS) || isSet(process.env.BITRISE_PULL_REQUEST) || isSet(process.env.APPVEYOR_PULL_REQUEST_NUMBER)
return isSet(process.env.TRAVIS_PULL_REQUEST) || isSet(process.env.CIRCLE_PULL_REQUEST) || isSet(process.env.BITRISE_PULL_REQUEST) || isSet(process.env.APPVEYOR_PULL_REQUEST_NUMBER)
}

export function isEnvTrue(value: string | null | undefined) {
Expand Down

0 comments on commit e182787

Please sign in to comment.