From 3a6b4a0f5d975995b4a75aab2d168553cd8e7ed8 Mon Sep 17 00:00:00 2001 From: Ramnique Singh <30795890+ramnique@users.noreply.github.com> Date: Fri, 6 Feb 2026 22:51:13 +0530 Subject: [PATCH] fix linux --- apps/x/apps/main/forge.config.cjs | 6 ++++-- apps/x/apps/main/package.json | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/x/apps/main/forge.config.cjs b/apps/x/apps/main/forge.config.cjs index 406b9521..21ddbaae 100644 --- a/apps/x/apps/main/forge.config.cjs +++ b/apps/x/apps/main/forge.config.cjs @@ -51,18 +51,20 @@ module.exports = { }, { name: '@electron-forge/maker-deb', - config: { + config: (arch) => ({ options: { + name: `Rowboat-linux`, description: 'AI coworker with memory', maintainer: 'rowboatlabs', homepage: 'https://rowboatlabs.com' } - } + }) }, { name: '@electron-forge/maker-rpm', config: { options: { + description: 'AI coworker with memory', homepage: 'https://rowboatlabs.com' } } diff --git a/apps/x/apps/main/package.json b/apps/x/apps/main/package.json index 93b662e5..20e3c5dc 100644 --- a/apps/x/apps/main/package.json +++ b/apps/x/apps/main/package.json @@ -3,6 +3,7 @@ "type": "module", "version": "0.1.0", "main": ".package/dist/main.cjs", + "license": "Apache-2.0", "scripts": { "start": "electron .", "build": "rm -rf dist && tsc && node bundle.mjs",