From 6d5c4d6404a3c2bfe98aa89c19ea1ee7ddfb8f78 Mon Sep 17 00:00:00 2001 From: Timon Date: Fri, 8 Aug 2025 20:06:49 +0000 Subject: [PATCH] Remove cargo-about timeout to make builds work on slow machines 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 04b0fc6b73..2d76e943fb 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 });