Set default path separator to '/' in MSYS/MSYS2

The environments of MSYS: [[https://www.msys2.org/docs/environments/]]
This commit is contained in:
Jian Wang 2024-03-04 20:59:06 +01:00
parent 3b2fd158b5
commit f875ea9a52
1 changed files with 3 additions and 5 deletions

View File

@ -128,13 +128,11 @@ pub fn strip_current_dir(path: &Path) -> &Path {
pub fn default_path_separator() -> Option<String> {
if cfg!(windows) {
let msystem = env::var("MSYSTEM").ok()?;
match msystem.as_str() {
"MINGW64" | "MINGW32" | "MSYS" => Some("/".to_owned()),
_ => None,
if !msystem.as_str().is_empty() {
return Some("/".to_owned());
}
} else {
None
}
None
}
#[cfg(test)]