Remove cargo-about timeout to make builds work on slow machines (#3032)

nixpkgs review in github actions will fail otherwise
This commit is contained in:
Timon
2025-08-11 11:14:45 +00:00
committed by GitHub
parent 2bb4509647
commit 8d0c9d7b81

View File

@@ -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
});