diff --git a/Cargo.toml b/Cargo.toml index 53622b2..e1110a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "MultiUp-Direct" -version = "3.2.0-beta.5" +version = "3.2.0" authors = ["Redpoint"] edition = "2021" diff --git a/src/modules/help.rs b/src/modules/help.rs index 0369ab5..a1e4f36 100644 --- a/src/modules/help.rs +++ b/src/modules/help.rs @@ -243,7 +243,11 @@ impl HelpUI { self_update::backends::github::Update::configure() .repo_owner("Reddiepoint") .repo_name("MultiUp-Direct") - .target("") + .target(match std::env::consts::OS { + "linux" => "amd64", + "macos" => "darwin", + _ => "" + }) .bin_name("MultiUp-Direct") .show_download_progress(false) .show_output(false)