fix(build): allow builds to continue when sandbox detection fails (#7538)

This commit is contained in:
Arya Gummadi
2025-09-01 07:24:11 -07:00
committed by GitHub
parent 39e7213fc4
commit 4fd1113905

View File

@@ -62,7 +62,7 @@ try {
} catch (e) {
console.warn('ERROR: could not detect sandbox container command');
console.error(e);
process.exit(1);
process.exit(process.env.CI ? 1 : 0);
}
if (sandboxCommand === 'sandbox-exec') {