fix: undefined CROSS variable in cleanup dry-run mode

Changed CROSS to CROSS_MARK to match the variable defined in the
Unicode characters section (line 91).

This fixes the "CROSS: unbound variable" error when running the
cleanup function in dry-run mode.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-25 17:05:51 +01:00
parent 0c62e90006
commit 060779544f

View File

@@ -797,7 +797,7 @@ EOPYCLEANUP
while IFS= read -r file; do
local basename
basename=$(basename "$file")
print_detail " ${CROSS} Would delete: ${DIM}${basename}${RESET}"
print_detail " ${CROSS_MARK} Would delete: ${DIM}${basename}${RESET}"
done <<< "$files_to_delete"
fi
return 0