mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 16:21:50 -04:00
Changelog: https://github.com/electron/electron/releases/tag/v31.7.0 Reported by: GitHub (watch releases)
11 lines
534 B
TypeScript
11 lines
534 B
TypeScript
--- electron/spec/crash-spec.ts.orig 2024-10-09 13:53:12 UTC
|
|
+++ electron/spec/crash-spec.ts
|
|
@@ -47,7 +47,7 @@ const shouldRunCase = (crashCase: string) => {
|
|
if (process.platform === 'win32') {
|
|
return process.arch !== 'ia32';
|
|
} else {
|
|
- return (process.platform !== 'linux' || (process.arch !== 'arm64' && process.arch !== 'arm'));
|
|
+ return ((process.platform !== 'linux' && process.platform !== 'freebsd') || (process.arch !== 'arm64' && process.arch !== 'arm'));
|
|
}
|
|
}
|
|
default: {
|