summaryrefslogtreecommitdiffstats
path: root/src/filesystem.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/filesystem.rs')
-rw-r--r--src/filesystem.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/filesystem.rs b/src/filesystem.rs
index b9df0ba..83e55c9 100644
--- a/src/filesystem.rs
+++ b/src/filesystem.rs
@@ -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)]