From 68fa37d61babe8d990ace5f9cb5a7de81eb57ea0 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 16 Apr 2023 14:44:48 +0200 Subject: Add gemini parsing --- src/file_handler/file_strategies/file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/file_handler/file_strategies/file.rs') diff --git a/src/file_handler/file_strategies/file.rs b/src/file_handler/file_strategies/file.rs index 42b87d5..8eafdaa 100644 --- a/src/file_handler/file_strategies/file.rs +++ b/src/file_handler/file_strategies/file.rs @@ -21,7 +21,7 @@ impl FileHandlerStrategy for Strategy { } } - fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File) { + fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File, _l: &String) { let relative_path = file.path.strip_prefix(&source).unwrap(); let complete_destination = destination.join(relative_path); let destination_parent = complete_destination.parent().unwrap(); -- cgit