1
0

fix: simplify script count increment syntax for clarity

This commit is contained in:
2025-08-04 23:13:29 -05:00
parent 980fa75310
commit 76abbd7d1d

View File

@@ -36,7 +36,7 @@ if [ -d "$DOTFILES_DIR/scripts" ]; then
log_error "$script_name failed"
exit 1
fi
((script_count++))
((++script_count))
fi
done