build: Added explicit bun version and fixed package script name casing

This commit is contained in:
Simeon Radivoev 2026-03-01 18:34:20 +02:00
parent 3e5881300f
commit 43afd6256e
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
3 changed files with 8 additions and 6 deletions

View file

@ -9,7 +9,8 @@ import { rmdir } from "node:fs";
// ─────────────────────────────────────────────
// CONFIGURE THESE FOR YOUR APP
// ─────────────────────────────────────────────
const APP_DIR = "./build/linux";
const BUILD_DIR = process.env.BUILD_DIR ?? process.platform;
const APP_DIR = `./build/${BUILD_DIR}`;
const BINARY_NAME = pkg.bin;
const ICON = "./src/mainview/assets/256x256.png";
const DESKTOP = "./flatpak/com.simeonradivoev.gameflow-deck.desktop";