1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(runtime/ops):Remove a duplicate conditional.

Use FreeBSD instead as it needs the same fix.
This commit is contained in:
Mikael Urankar 2024-10-31 17:53:18 +01:00
parent 90edca21a2
commit 8cd23c577f

View file

@ -49,7 +49,7 @@ pub enum SignalError {
#[cfg(any( #[cfg(any(
target_os = "android", target_os = "android",
target_os = "linux", target_os = "linux",
target_os = "openbsd", target_os = "freebsd",
target_os = "openbsd", target_os = "openbsd",
target_os = "macos", target_os = "macos",
target_os = "solaris", target_os = "solaris",
@ -60,7 +60,7 @@ pub enum SignalError {
#[cfg(any( #[cfg(any(
target_os = "android", target_os = "android",
target_os = "linux", target_os = "linux",
target_os = "openbsd", target_os = "freebsd",
target_os = "openbsd", target_os = "openbsd",
target_os = "macos", target_os = "macos",
target_os = "solaris", target_os = "solaris",