1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 19:09:43 +00:00

fix(clean): silence ShellCheck SC2053

This commit is contained in:
Tw93
2026-01-23 18:32:33 +08:00
parent 7e359c57d9
commit 500b6dc554

View File

@@ -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")