Skip to content

Commit 4cdc261

Browse files
committed
Fix clippy issues.
1 parent 11926e6 commit 4cdc261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,9 @@ fn bundle_command(flags: DenoFlags, argv: Vec<String>) {
270270
debug!("diagnostics returned, exiting!");
271271
eprintln!("\n{}", e.to_string());
272272
std::process::exit(1);
273-
}).and_then(move |out| {
273+
}).and_then(move |_| {
274274
debug!(">>>>> bundle_async END");
275-
Ok(out)
275+
Ok(())
276276
});
277277
tokio_util::run(bundle_future);
278278
}

0 commit comments

Comments
 (0)