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 347730d + 6796f47 commit 7a82fcfCopy full SHA for 7a82fcf
src/bin/cross.rs
@@ -19,7 +19,9 @@ pub fn main() -> cross::Result<()> {
19
let args = cli::parse(&target_list)?;
20
let subcommand = args.subcommand;
21
let mut msg_info = shell::MessageInfo::create(
22
- args.verbose + cross::config::bool_from_envvar("CROSS_DEBUG") as u8,
+ args.verbose
23
+ + cross::config::bool_from_envvar(&std::env::var("CROSS_DEBUG").unwrap_or_default())
24
+ as u8,
25
args.quiet,
26
args.color.as_deref(),
27
)?;
0 commit comments