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

Fix scan error

This commit is contained in:
Tw93
2025-12-11 16:18:49 +08:00
parent b5de1270cd
commit 80358a6c91

View File

@@ -132,7 +132,7 @@ clean_orphaned_app_data() {
# Read bundle IDs with PlistBuddy
local count=0
for app_path in "${app_paths[@]}"; do
for app_path in "${app_paths[@]:-}"; do
local plist_path="$app_path/Contents/Info.plist"
[[ ! -f "$plist_path" ]] && continue