From 851d3a88e63b1924814a5d9b600b913cfa012974 Mon Sep 17 00:00:00 2001 From: Harshit Singh Bhandari Date: Mon, 22 Jun 2026 20:30:54 +0530 Subject: [PATCH] fix(forge): set deb maker bin to executableName so Linux .deb builds Co-Authored-By: Claude Opus 4.8 --- frontend/forge.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/forge.config.ts b/frontend/forge.config.ts index 8c984a4af..03228852a 100644 --- a/frontend/forge.config.ts +++ b/frontend/forge.config.ts @@ -42,6 +42,10 @@ const config: ForgeConfig = { name: "@electron-forge/maker-deb", config: { options: { + // Must match packagerConfig.executableName; otherwise the deb + // maker looks for `agent-orchestrator-frontend` (the package name) + // and fails with "could not find the Electron app binary". + bin: "agent-orchestrator", icon: "assets/icon.png", maintainer: "Agent Orchestrator", homepage: "https://github.com/aoagents/agent-orchestrator",