From 500b6dc554e8ef9c635d97983e301de84622e41e Mon Sep 17 00:00:00 2001 From: Tw93 Date: Fri, 23 Jan 2026 18:32:33 +0800 Subject: [PATCH] fix(clean): silence ShellCheck SC2053 --- lib/clean/dev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/clean/dev.sh b/lib/clean/dev.sh index 795480f..3904706 100644 --- a/lib/clean/dev.sh +++ b/lib/clean/dev.sh @@ -230,7 +230,7 @@ clean_dev_jetbrains_toolbox() { local -a filtered_whitelist=() local pattern for pattern in "${WHITELIST_PATTERNS[@]}"; do - if [[ "$toolbox_root" == $pattern || "$pattern" == "$toolbox_root"* ]]; then + if [[ "$toolbox_root" == "$pattern" || "$pattern" == "$toolbox_root"* ]]; then continue fi filtered_whitelist+=("$pattern")