Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
Fix PR check again
Browse files Browse the repository at this point in the history
  • Loading branch information
jwheare committed Jan 14, 2021
1 parent f736084 commit 9884075
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/afterSign.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exports.default = async function afterSign(context) {

// Don't notarize on pull requests
if (
process.env.GITHUB.EVENT_NAME == 'pull_request' ||
process.env.GITHUB_EVENT_NAME == 'pull_request' ||
process.env.TRAVIS_EVENT_TYPE == 'pull_request' ||
process.env.APPVEYOR_PULL_REQUEST_NUMBER > 0
) {
Expand Down
2 changes: 1 addition & 1 deletion scripts/sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exports.default = async function (configuration) {

// Don't sign on pull requests
if (
process.env.GITHUB.EVENT_NAME == 'pull_request' ||
process.env.GITHUB_EVENT_NAME == 'pull_request' ||
process.env.TRAVIS_EVENT_TYPE == 'pull_request' ||
process.env.APPVEYOR_PULL_REQUEST_NUMBER > 0
) {
Expand Down

0 comments on commit 9884075

Please sign in to comment.