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.
1 parent 043822d commit 6282474Copy full SHA for 6282474
src/bootstrap/src/bin/main.rs
@@ -29,9 +29,9 @@ fn main() {
29
}
30
31
debug!("parsing flags");
32
- let flags = Flags::parse(&args);
+ let (flags, execution_context) = Flags::parse(&args);
33
debug!("parsing config based on flags");
34
- let config = Config::parse(flags);
+ let config = Config::parse(flags, execution_context);
35
36
let mut build_lock;
37
let _build_lock_guard;
0 commit comments