Ensure file permissions when building for Linux and set sha length for test builds

This commit is contained in:
ayumi-signal
2025-09-30 13:17:29 -07:00
committed by GitHub
parent 8fee01054a
commit 7bb8a35839
4 changed files with 33 additions and 4 deletions

View File

@@ -5,9 +5,11 @@ import type { AfterPackContext } from 'electron-builder';
import { afterPack as fuseElectron } from './fuse-electron.js';
import { afterPack as copyPacks } from './copy-language-packs.js';
import { afterPack as pruneMacOSRelease } from './prune-macos-release.js';
import { afterPack as ensureLinuxFilePermissions } from './ensure-linux-file-permissions.js';
export async function afterPack(context: AfterPackContext): Promise<void> {
await pruneMacOSRelease(context);
await fuseElectron(context);
await copyPacks(context);
await ensureLinuxFilePermissions(context);
}