diff --git a/src/config/config_type.rs b/src/config/config_type.rs index 82cf0e19a8fe..aea19b34375c 100644 --- a/src/config/config_type.rs +++ b/src/config/config_type.rs @@ -73,7 +73,7 @@ impl ConfigType for IgnoreList { macro_rules! is_nightly_channel { () => { option_env!("CFG_RELEASE_CHANNEL") - .map(|c| c == "nightly") + .map(|c| c == "nightly" || c == "dev") .unwrap_or(true) }; }