Skip to content

Commit

Permalink
fix(elan-dist): Windows target triple
Browse files Browse the repository at this point in the history
  • Loading branch information
Kha committed Apr 12, 2018
1 parent 921e01e commit e20b59c
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 @@ -307,7 +307,7 @@ impl Manifestation {
let informal_target = match self.target_triple.0.as_str() {
"x86_64-unknown-linux-gnu" => Some("linux"),
"x86_64-apple-darwin" => Some("darwin"),
"x86_64-pc-windows" => Some("windows"),
"x86_64-pc-windows-msvc" => Some("windows"),
_ => None,
};
let url = new_manifest.iter().find(|u|
Expand Down

0 comments on commit e20b59c

Please sign in to comment.