mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-02 00:07:56 +01:00
63 lines
1.6 KiB
TypeScript
63 lines
1.6 KiB
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { stat } from 'node:fs/promises';
|
|
import { join } from 'node:path';
|
|
|
|
import { name as NAME, version as VERSION } from '../util/packageJson.node.js';
|
|
|
|
const SUPPORT_CONFIG = new Set([
|
|
'linux',
|
|
'windows',
|
|
'macos-arm64',
|
|
'macos-x64',
|
|
'macos-universal',
|
|
]);
|
|
|
|
const RELEASE_DIR = join(__dirname, '..', '..', 'release');
|
|
|
|
// TODO: DESKTOP-9836
|
|
async function main(): Promise<void> {
|
|
const config = process.argv[2];
|
|
if (!SUPPORT_CONFIG.has(config)) {
|
|
throw new Error(`Invalid argument: ${config}`);
|
|
}
|
|
|
|
let fileName: string;
|
|
let platform: string;
|
|
let arch: string;
|
|
if (config === 'linux') {
|
|
fileName = `${NAME}_${VERSION}_amd64.deb`;
|
|
platform = 'linux';
|
|
arch = 'x64';
|
|
} else if (config === 'windows') {
|
|
fileName = `${NAME}-win-x64-${VERSION}.exe`;
|
|
platform = 'windows';
|
|
arch = 'x64';
|
|
} else if (config === 'macos-arm64') {
|
|
fileName = `${NAME}-mac-arm64-${VERSION}.zip`;
|
|
platform = 'macos';
|
|
arch = 'arm64';
|
|
} else if (config === 'macos-x64') {
|
|
fileName = `${NAME}-mac-x64-${VERSION}.zip`;
|
|
platform = 'macos';
|
|
arch = 'x64';
|
|
} else if (config === 'macos-universal') {
|
|
fileName = `${NAME}-mac-universal-${VERSION}.dmg`;
|
|
platform = 'macos';
|
|
arch = 'universal';
|
|
} else {
|
|
throw new Error(`Unsupported config: ${config}`);
|
|
}
|
|
|
|
const filePath = join(RELEASE_DIR, fileName);
|
|
const { size } = await stat(filePath);
|
|
|
|
console.log(`${platform} ${arch} release size: ${size}`);
|
|
}
|
|
|
|
main().catch(err => {
|
|
console.error('Failed', err);
|
|
process.exit(1);
|
|
});
|