This commit is contained in:
Felipe 2023-11-08 01:54:11 -03:00
parent afcc1f491e
commit 73edd0a4b4
Signed by: pitbuster
SSH key fingerprint: SHA256:HDYu2Pm4/TmSX8GBwV49UvFWr1Ljg8XlHxKeCpjJpOk

View file

@ -60,7 +60,7 @@ fn get_directories(
let entry = entry?;
if entry.metadata()?.is_dir() {
// Skip dot directories
if entry.file_name().starts_with(".") {
if entry.file_name().starts_with('.') {
continue;
}
let p = match &relative_to {