From f623746d6cdf0e307191b058cd421b4b60317295 Mon Sep 17 00:00:00 2001 From: signed-log Date: Mon, 17 Jul 2023 05:30:55 +0000 Subject: [PATCH] Fix clippy warning about non_minimal_cfg (#505) Fix clippy::non_minimal_cfg warning --- src/steps/emacs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/emacs.rs b/src/steps/emacs.rs index 4819ad75..a6afa8c9 100644 --- a/src/steps/emacs.rs +++ b/src/steps/emacs.rs @@ -1,4 +1,4 @@ -#[cfg(any(windows))] +#[cfg(windows)] use std::env; use std::path::{Path, PathBuf};