summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--installer-downloader/src/lib.rs9
1 files changed, 2 insertions, 7 deletions
diff --git a/installer-downloader/src/lib.rs b/installer-downloader/src/lib.rs
index a07d557d67..e787ccca78 100644
--- a/installer-downloader/src/lib.rs
+++ b/installer-downloader/src/lib.rs
@@ -1,14 +1,9 @@
-#[cfg(any(target_os = "windows", target_os = "macos"))]
+#![cfg(any(target_os = "windows", target_os = "macos"))]
+
pub mod controller;
-#[cfg(any(target_os = "windows", target_os = "macos"))]
pub mod delegate;
-#[cfg(any(target_os = "windows", target_os = "macos"))]
pub mod environment;
-#[cfg(any(target_os = "windows", target_os = "macos"))]
pub mod log;
-#[cfg(any(target_os = "windows", target_os = "macos"))]
pub mod resource;
-#[cfg(any(target_os = "windows", target_os = "macos"))]
pub mod temp;
-#[cfg(any(target_os = "windows", target_os = "macos"))]
pub mod ui_downloader;