notarize: Fix lint errors.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-05-05 12:54:09 -07:00
parent 4c25c99abc
commit 190204b2e5

View File

@@ -4,7 +4,7 @@ const dotenv = require('dotenv');
dotenv.config({path: path.join(__dirname, '/../.env')});
const { notarize } = require('electron-notarize');
const {notarize} = require('electron-notarize');
exports.default = async function (context) {
const {electronPlatformName, appOutDir} = context;
@@ -19,6 +19,6 @@ exports.default = async function (context) {
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASS,
ascProvider: process.env.ASC_PROVIDER // team short name
ascProvider: process.env.ASC_PROVIDER // Team short name
});
};