mirror of
https://github.com/sayanarijit/xplr
synced 2024-11-04 18:00:14 +00:00
Optimize get_current_dir
Closes: https://github.com/sayanarijit/xplr/issues/628
This commit is contained in:
parent
255517c2a9
commit
313c61db96
@ -40,15 +40,14 @@ pub fn get_tty() -> Result<fs::File> {
|
||||
// returns physical path. As a workaround, this function tries to use `PWD`
|
||||
// environment variable that is configured by shell.
|
||||
fn get_current_dir() -> Result<PathBuf, std::io::Error> {
|
||||
let cur = std::env::current_dir();
|
||||
if let Ok(pwd) = std::env::var("PWD") {
|
||||
if pwd.is_empty() {
|
||||
cur
|
||||
std::env::current_dir()
|
||||
} else {
|
||||
Ok(PathBuf::from(pwd))
|
||||
}
|
||||
} else {
|
||||
cur
|
||||
std::env::current_dir()
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user