Canonicalize executable path
When looking up the runtime/ directory relative to the executable path, canonicalize the path first in case the executable is a symbolic link. Fixes #3768
This commit is contained in:
parent
ec81ec1e8d
commit
b5be72bff7
1 changed files with 2 additions and 0 deletions
|
@ -42,8 +42,10 @@ pub fn runtime_dir() -> PathBuf {
|
|||
}
|
||||
|
||||
// fallback to location of the executable being run
|
||||
// canonicalize the path in case the executable is symlinked
|
||||
std::env::current_exe()
|
||||
.ok()
|
||||
.and_then(|path| std::fs::canonicalize(path).ok())
|
||||
.and_then(|path| path.parent().map(|path| path.to_path_buf().join(RT_DIR)))
|
||||
.unwrap()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue