aboutsummaryrefslogtreecommitdiffstats
path: root/build-helpers/notarize.js
diff options
context:
space:
mode:
Diffstat (limited to 'build-helpers/notarize.js')
-rw-r--r--build-helpers/notarize.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-helpers/notarize.js b/build-helpers/notarize.js
index cb83808ad..d5a6027fb 100644
--- a/build-helpers/notarize.js
+++ b/build-helpers/notarize.js
@@ -2,7 +2,7 @@ const { notarize } = require("electron-notarize");
2 2
3exports.default = async function notarizing(context) { 3exports.default = async function notarizing(context) {
4 const { electronPlatformName, appOutDir } = context; 4 const { electronPlatformName, appOutDir } = context;
5 if (electronPlatformName !== "darwin" || (process.env.TRAVIS_BRANCH !== 'release' && process.env.TRAVIS_BRANCH !== 'nightly')) { 5 if (electronPlatformName !== "darwin" || (process.env.GIT_BRANCH_NAME !== 'release' && process.env.GIT_BRANCH_NAME !== 'nightly')) {
6 return; 6 return;
7 } 7 }
8 8