Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(node_manager) display download path #1459

Merged
merged 1 commit into from
Mar 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sn_node_manager/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading