1
0
mirror of https://github.com/tw93/Mole.git synced 2026-03-22 18:30:08 +00:00

chore: auto format code

This commit is contained in:
Tw93
2026-02-26 03:54:50 +00:00
parent 29ec8f7d43
commit b3f023b5e6

View File

@@ -816,7 +816,7 @@ clean_application_support_logs() {
[[ -e "$item" ]] || continue
item_found=true
((candidate_item_count++))
if [[ ! -L "$item" && ( -f "$item" || -d "$item" ) ]]; then
if [[ ! -L "$item" && (-f "$item" || -d "$item") ]]; then
local item_size_bytes=""
if item_size_bytes=$(app_support_item_size_bytes "$item" "$size_timeout_seconds"); then
if [[ "$item_size_bytes" =~ ^[0-9]+$ ]]; then
@@ -867,7 +867,7 @@ clean_application_support_logs() {
[[ -e "$item" ]] || continue
item_found=true
((candidate_item_count++))
if [[ ! -L "$item" && ( -f "$item" || -d "$item" ) ]]; then
if [[ ! -L "$item" && (-f "$item" || -d "$item") ]]; then
local item_size_bytes=""
if item_size_bytes=$(app_support_item_size_bytes "$item" "$size_timeout_seconds"); then
if [[ "$item_size_bytes" =~ ^[0-9]+$ ]]; then