From 8d0c9d7b8195af699d346c056a8a4af7d2446f16 Mon Sep 17 00:00:00 2001 From: Timon Date: Mon, 11 Aug 2025 11:14:45 +0000 Subject: [PATCH] Remove cargo-about timeout to make builds work on slow machines (#3032) nixpkgs review in github actions will fail otherwise --- frontend/vite.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 04b0fc6b..2d76e943 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -262,7 +262,6 @@ function generateRustLicenses(): LicenseInfo[] | undefined { const { stdout, stderr, status } = spawnSync("cargo", ["about", "generate", "about.hbs"], { cwd: path.join(__dirname, ".."), encoding: "utf8", - timeout: 60000, // One minute shell: true, windowsHide: true, // Hide the terminal on Windows });