aboutsummaryrefslogtreecommitdiff
path: root/src/file_finder.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file_finder.rs')
-rw-r--r--src/file_finder.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file_finder.rs b/src/file_finder.rs
index 598f868..105a999 100644
--- a/src/file_finder.rs
+++ b/src/file_finder.rs
@@ -2,8 +2,8 @@ use crate::file_handler::{File, FileHandler};
use std::fs::read_dir;
use std::path::PathBuf;
-pub fn find_files(directory_path: PathBuf) -> Vec<File> {
- return find_files_recursively(&directory_path, &directory_path);
+pub fn find_files(directory_path: &PathBuf) -> Vec<File> {
+ return find_files_recursively(directory_path, directory_path);
}
fn find_files_recursively(root_path: &PathBuf, directory_path: &PathBuf) -> Vec<File> {
@@ -13,7 +13,7 @@ fn find_files_recursively(root_path: &PathBuf, directory_path: &PathBuf) -> Vec<
for entry in entries {
let path = entry.unwrap().path();
let relative_path = path.strip_prefix(&root_path).unwrap();
- if relative_path.starts_with(".") && !relative_path.starts_with(".well-known") {
+ if relative_path.starts_with(".git") {
continue;
}
if path.is_dir() {