We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca19c9a + 8cc4200 commit 454a20aCopy full SHA for 454a20a
src/bin/main.rs
@@ -160,7 +160,7 @@ fn make_opts() -> Options {
160
161
fn is_nightly() -> bool {
162
option_env!("CFG_RELEASE_CHANNEL")
163
- .map(|c| c == "nightly")
+ .map(|c| c == "nightly" || c == "dev")
164
.unwrap_or(false)
165
}
166
src/config/config_type.rs
@@ -73,7 +73,7 @@ impl ConfigType for IgnoreList {
73
macro_rules! is_nightly_channel {
74
() => {
75
76
77
.unwrap_or(true)
78
};
79
0 commit comments