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:
parent
90edca21a2
commit
8cd23c577f
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue