1
0

fix: simplify script count increment syntax for clarity

This commit is contained in:
2025-08-04 23:13:29 -05:00
parent 27b29989e3
commit 4ed1e40caa

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