1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Chore: Getting notarization to work

This commit is contained in:
Laurent Cozic 2020-11-29 18:45:37 +00:00
parent dbb8b4d895
commit c8b40bfdb2

View File

@ -7,13 +7,8 @@ module.exports = async function(params) {
console.info('Checking if notarization should be done...');
if (process.env.TRAVIS_PULL_REQUEST) {
console.info('Detected Travis pull request build - skipping notarization');
return;
}
if (!!process.env.TRAVIS && !process.env.TRAVIS_TAG) {
console.info('Detected Travis environment but no tag - skipping notarization');
if (!process.env.TRAVIS || !process.env.TRAVIS_TAG) {
console.info(`Either not running in CI or not processing a tag - skipping notarization. process.env.TRAVIS = ${process.env.TRAVIS}; process.env.TRAVIS_TAG = ${process.env.TRAVIS}`);
return;
}