From a4c52e8f8d16c104e9cd2b3bd6e9418cce6b1a39 Mon Sep 17 00:00:00 2001
From: Nathan Woodburn <github@nathan.woodburn.au>
Date: Fri, 28 Mar 2025 16:22:24 +1100
Subject: [PATCH] feat: Add more debugging

---
 dotfiles.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dotfiles.sh b/dotfiles.sh
index 0e87400..c63bd04 100755
--- a/dotfiles.sh
+++ b/dotfiles.sh
@@ -12,12 +12,12 @@ ignore_files=("README.md" ".git" ".gitmodules")
 create_symlinks() {
     local src_dir="$1"
     local target_dir="$2"
-
     # Create the target directory if it doesn't exist
     mkdir -p "$target_dir"
     
     # For each file
     for file in "$src_dir"/*; do
+        echo "Processing: $file"
         # Get the file name
         local file_name=$(basename "$file")