Use the OS path separator instead of / (#10000)
This commit is contained in:
parent
614a744d24
commit
1d1087822a
1 changed files with 3 additions and 2 deletions
|
@ -3,7 +3,7 @@ pub use etcetera::home_dir;
|
||||||
use std::{
|
use std::{
|
||||||
borrow::Cow,
|
borrow::Cow,
|
||||||
ffi::OsString,
|
ffi::OsString,
|
||||||
path::{Component, Path, PathBuf},
|
path::{Component, Path, PathBuf, MAIN_SEPARATOR_STR},
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::env::current_working_dir;
|
use crate::env::current_working_dir;
|
||||||
|
@ -18,7 +18,8 @@ where
|
||||||
if let Ok(home) = home_dir() {
|
if let Ok(home) = home_dir() {
|
||||||
if let Ok(stripped) = path.strip_prefix(&home) {
|
if let Ok(stripped) = path.strip_prefix(&home) {
|
||||||
let mut path = OsString::with_capacity(2 + stripped.as_os_str().len());
|
let mut path = OsString::with_capacity(2 + stripped.as_os_str().len());
|
||||||
path.push("~/");
|
path.push("~");
|
||||||
|
path.push(MAIN_SEPARATOR_STR);
|
||||||
path.push(stripped);
|
path.push(stripped);
|
||||||
return Cow::Owned(PathBuf::from(path));
|
return Cow::Owned(PathBuf::from(path));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue