Skip to content

Commit

Permalink
cargo-coupler bundle: fix x86_64-pc-windows-* target definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
micahrj committed Jan 8, 2024
1 parent 3a0914c commit 8b2eb5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cargo-coupler/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@ impl FromStr for Target {
}),
"x86_64-pc-windows-gnu" => Ok(Target {
arch: Arch::X86_64,
os: Os::MacOs,
os: Os::Windows,
}),
"x86_64-pc-windows-msvc" => Ok(Target {
arch: Arch::X86_64,
os: Os::MacOs,
os: Os::Windows,
}),
"x86_64-unknown-linux-gnu" => Ok(Target {
arch: Arch::X86_64,
Expand Down

0 comments on commit 8b2eb5a

Please sign in to comment.