1
0
mirror of https://github.com/tw93/Mole.git synced 2026-03-22 18:30:08 +00:00

fix: correct missing $ in color variable reference

Fix typo from PR #523: {NC} → ${NC}
This commit is contained in:
tw93
2026-03-03 15:57:05 +08:00
parent c41dcbcdee
commit 66ba1889c6

View File

@@ -1042,7 +1042,7 @@ perform_cleanup() {
freed_size_human="${freed_value}${freed_unit}"
if [[ "$DRY_RUN" == "true" ]]; then
local stats="Potential space: ${GREEN}${freed_size_human}{NC}"
local stats="Potential space: ${GREEN}${freed_size_human}${NC}"
[[ $files_cleaned -gt 0 ]] && stats+=" | Items: $files_cleaned"
[[ $total_items -gt 0 ]] && stats+=" | Categories: $total_items"
summary_details+=("$stats")