1
0

fix: add debug output for script discovery in setup.sh

This commit is contained in:
2025-08-04 22:09:27 -05:00
parent c76ed8e31e
commit aa3d886b6c

View File

@@ -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