From 060779544fb9438f846a950a9f6050fe617e1199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 25 Nov 2025 17:05:51 +0100 Subject: [PATCH] fix: undefined CROSS variable in cleanup dry-run mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- artifact_huggingface_download.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artifact_huggingface_download.sh b/artifact_huggingface_download.sh index 88b6e5b..f34f2ed 100755 --- a/artifact_huggingface_download.sh +++ b/artifact_huggingface_download.sh @@ -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