summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/skaldpress/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/skaldpress/main.rs b/src/skaldpress/main.rs
index c96f304..566fff3 100644
--- a/src/skaldpress/main.rs
+++ b/src/skaldpress/main.rs
@@ -457,7 +457,7 @@ fn copy_files_in_directory(directory: &Path, opts: &Opts) -> Result<(), Skaldpre
println!("\x1b[31mError copying {:#?}: {}\x1b[0m", path.as_path(), e);
}
} else if metadata.is_dir() {
- if let Err(e) = compile_files_in_directory(path.as_path(), opts) {
+ if let Err(e) = copy_files_in_directory(path.as_path(), opts) {
println!(
"\x1b[31mError processing directory {:#?}: {}\x1b[0m",
path.as_path(),