--- a/crates/nu-system/src/lib.rs +++ b/crates/nu-system/src/lib.rs @@ -1,11 +1,11 @@ -#[cfg(target_os = "linux")] +#[cfg(any(target_os = "linux", target_os = "android"))] mod linux; #[cfg(target_os = "macos")] mod macos; #[cfg(target_os = "windows")] mod windows; -#[cfg(target_os = "linux")] +#[cfg(any(target_os = "linux", target_os = "android"))] pub use self::linux::*; #[cfg(target_os = "macos")] pub use self::macos::*;