From 5dc066f4c6d00c480c2867295ff7d76e9cf32b57 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 24 Oct 2025 23:03:20 +0300 Subject: [PATCH] chore(dev): add work-around to run on Ubuntu See https://github.com/electron/electron/issues/42510. --- scripts/electron-start.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/electron-start.mts b/scripts/electron-start.mts index 92e85f9a8..e1ed9df7e 100644 --- a/scripts/electron-start.mts +++ b/scripts/electron-start.mts @@ -3,7 +3,7 @@ import { getElectronPath, isNixOS } from "./utils.mjs"; const LD_LIBRARY_PATH = isNixOS() && execSync("nix eval --raw nixpkgs#gcc.cc.lib").toString("utf-8") + "/lib"; -execSync(`${getElectronPath()} ${process.argv[2]}`, { +execSync(`${getElectronPath()} ${process.argv[2]} --no-sandbox`, { stdio: "inherit", env: { ...process.env,