Skip to content

Commit

Permalink
fix: incorrect release type reference
Browse files Browse the repository at this point in the history
Already tried to fix this bug with the faucet upgrade process downloading the wrong, but somehow
still managed to miss another hard-coded `ReleaseType` reference.
  • Loading branch information
jacderida committed Apr 9, 2024
1 parent 17d292b commit db8098c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sn_node_manager/src/cmd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub async fn download_and_get_upgrade_bin_path(
let latest_version = release_repo.get_latest_version(&release_type).await?;
println!("Latest version is {latest_version}");
let (upgrade_bin_path, _) = download_and_extract_release(
ReleaseType::Safenode,
release_type,
None,
Some(latest_version.to_string()),
&*release_repo,
Expand Down

0 comments on commit db8098c

Please sign in to comment.