Skip to content

Commit 6282474

Browse files
committed
adapt bootstrap main.rs with execution_context
1 parent 043822d commit 6282474

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/src/bin/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ fn main() {
2929
}
3030

3131
debug!("parsing flags");
32-
let flags = Flags::parse(&args);
32+
let (flags, execution_context) = Flags::parse(&args);
3333
debug!("parsing config based on flags");
34-
let config = Config::parse(flags);
34+
let config = Config::parse(flags, execution_context);
3535

3636
let mut build_lock;
3737
let _build_lock_guard;

0 commit comments

Comments
 (0)