Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions apps/desktop/forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,13 @@ const config: ForgeConfig = {
{
options: {
name: "lightfast",
// electron-installer-common defaults `bin` to `pkg.name`, which
// becomes `@lightfast/desktop` after the release workflow runs
// `npm version`. The actual binary on disk is `lightfast` (set via
// `packagerConfig.executableName` above). Without this override the
// maker fails: "could not find the Electron app binary at
// .../Lightfast-linux-<arch>/@lightfast/desktop".
bin: "lightfast",
productName: "Lightfast",
genericName: "Developer Tool",
maintainer: "Lightfast <releases@lightfast.ai>",
Expand All @@ -169,6 +176,9 @@ const config: ForgeConfig = {
{
options: {
name: "lightfast",
// Same `bin` override as MakerDeb above — electron-installer-redhat
// shares the same `getDefaultsFromPackageJSON` helper.
bin: "lightfast",
productName: "Lightfast",
genericName: "Developer Tool",
license: "MIT",
Expand Down
Loading