From c66d8154eb89c7dd26778bd834a9c0739682d4df Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Mon, 18 Jul 2022 17:13:06 +1000 Subject: [PATCH] Print out `resolution` in optimized path where confirmation isn't required. Signed-off-by: Jiahao XU --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index 98573bc2..d3f28c11 100644 --- a/src/main.rs +++ b/src/main.rs @@ -299,6 +299,9 @@ async fn entry() -> Result<()> { tokio::spawn(async move { let resolution = await_task(task).await??; + + resolution.print(&opts); + install(resolution, opts, temp_dir_path, target).await }) })