feat: Add more debugging

This commit is contained in:
Nathan Woodburn 2025-03-28 16:22:24 +11:00
parent b58bcb5f81
commit a4c52e8f8d
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

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