Skip to content

Commit 4503ed6

Browse files
authored
Merge pull request #43 from meithecatte/rustc-forward-compat
Forward compatibility with rust-lang/rust#138961
2 parents 87cda18 + c31bdf5 commit 4503ed6

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)