Main: Canonicalize paths before sorting
This commit is contained in:
parent
c8b2d6951b
commit
19e26b2dbd
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ fn run() -> Result<()> {
|
||||||
for directory in directories_with_hashed_files {
|
for directory in directories_with_hashed_files {
|
||||||
for file in directory.read_dir()? {
|
for file in directory.read_dir()? {
|
||||||
let file = file?;
|
let file = file?;
|
||||||
let path = file.path();
|
let path = file.path().canonicalize()?;
|
||||||
|
|
||||||
hashed_files.push(path);
|
hashed_files.push(path);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue