Skip to content

Commit c31bdf5

Browse files
committed
Forward compatibility with rust-lang/rust#138961
1 parent 87cda18 commit c31bdf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
4343
.unwrap();
4444

4545
// Run Nova in a secondary blocking thread so tokio tasks can still run
46-
let nova_thread = rt.spawn_blocking(|| match args.command {
46+
let nova_thread = rt.spawn_blocking(move || match args.command {
4747
Command::Run {
4848
verbose,
4949
no_strict,

0 commit comments

Comments
 (0)