Skip to content

Commit

Permalink
chore: redundant / in download URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Kha committed Jun 19, 2024
1 parent 239ca24 commit c387805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elan-dist/src/manifestation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl Manifestation {
format!("binary package was not provided for '{}'", informal_target).into(),
);
}
let url = format!("https://github.com/{}", url.unwrap());
let url = format!("https://github.com{}", url.unwrap());
notify_handler(Notification::DownloadingComponent(&url));

let installer_file = dlcfg.download_and_check(&url)?;
Expand Down

0 comments on commit c387805

Please sign in to comment.