Add libclide. #23

Open
shaunrd0 wants to merge 19 commits from shared-module into main
Showing only changes of commit 7490e36a2f - Show all commits

View File

@@ -35,7 +35,7 @@ impl EntryMeta {
pub fn new<P: AsRef<Path>>(p: P) -> Result<Self> {
let path = p.as_ref();
let is_dir = path.is_dir();
let abs_path = Self::normalize(&path).to_string_lossy().to_string();
let abs_path = Self::normalize(path).to_string_lossy().to_string();
let file_name = Path::new(&abs_path)
.file_name()
.context(format!("Failed to get file name for path: {abs_path:?}"))?