From 52a62d868c7ab9e4c11ea05ad381dd2ac2b757d0 Mon Sep 17 00:00:00 2001 From: loziniak Date: Sat, 16 Mar 2024 19:21:06 +0100 Subject: [PATCH] feat(manager): display download path --- sn_node_manager/src/helpers.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sn_node_manager/src/helpers.rs b/sn_node_manager/src/helpers.rs index afd840158c..a625dad53f 100644 --- a/sn_node_manager/src/helpers.rs +++ b/sn_node_manager/src/helpers.rs @@ -89,10 +89,12 @@ pub async fn download_and_extract_release( }; }; pb.finish_and_clear(); - println!("Download completed"); let safenode_download_path = release_repo.extract_release_archive(&archive_path, &temp_dir_path)?; + + println!("Download completed: {}", &safenode_download_path.display()); + // Finally, obtain the version number from the binary by running `--version`. This is useful // when the `--url` argument is used, and in any case, ultimately the binary we obtained is the // source of truth.