We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b8ffe commit 6e9002fCopy full SHA for 6e9002f
src/bootstrap/src/utils/shared_helpers.rs
@@ -46,7 +46,7 @@ pub fn dylib_path() -> Vec<std::path::PathBuf> {
46
/// Given an executable called `name`, return the filename for the
47
/// executable for a particular target.
48
pub fn exe(name: &str, target: &str) -> String {
49
- if target.contains("windows") || (cfg!(not(target_os = "cygwin")) && target.contains("cygwin"))
+ if target.contains("windows") || (cfg!(not(target_os = "cygwin")) && target.contains("cygwin"))
50
{
51
format!("{name}.exe")
52
} else if target.contains("uefi") {
0 commit comments