2022-04-05 16:13:11 -07:00
|
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import type { BuildResult } from 'electron-builder';
|
2022-04-05 17:56:53 -07:00
|
|
|
import { afterAllArtifactBuild as notarizeUniversalDMG } from './notarize-universal-dmg';
|
2022-04-05 16:13:11 -07:00
|
|
|
|
|
|
|
export async function afterAllArtifactBuild(
|
|
|
|
result: BuildResult
|
|
|
|
): Promise<Array<string>> {
|
2022-04-05 17:56:53 -07:00
|
|
|
await notarizeUniversalDMG(result);
|
2022-04-05 16:13:11 -07:00
|
|
|
return [];
|
|
|
|
}
|