From aa3d886b6cdad922ad13661448bcbb1fc1da4587 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Mon, 4 Aug 2025 22:09:27 -0500 Subject: [PATCH] fix: add debug output for script discovery in setup.sh --- setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.sh b/setup.sh index 751f2ab..874773a 100644 --- a/setup.sh +++ b/setup.sh @@ -26,6 +26,7 @@ if [ -d "$DOTFILES_DIR/scripts" ]; then # Look for numbered scripts and run them in order script_count=0 for script in "$DOTFILES_DIR"/scripts/[0-9][0-9]-*.sh; do + echo "DEBUG: Found script: $script" if [ -f "$script" ]; then script_name=$(basename "$script") log_info "Running $script_name..." @@ -38,6 +39,8 @@ if [ -d "$DOTFILES_DIR/scripts" ]; then fi ((script_count++)) + else + echo "DEBUG: Not a file: $script" fi done