From 41c8325019493db2004b0f50cb380c592a11f806 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Sat, 3 Jan 2026 10:08:35 +0000 Subject: [PATCH] chore: auto format code --- lib/clean/apps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/clean/apps.sh b/lib/clean/apps.sh index 57a05e4..7e844c0 100644 --- a/lib/clean/apps.sh +++ b/lib/clean/apps.sh @@ -159,8 +159,8 @@ is_bundle_orphaned() { esac if [[ -e "$directory_path" ]]; then local last_modified_epoch=$(get_file_mtime "$directory_path") - local current_epoch - current_epoch=$(get_epoch_seconds) + local current_epoch + current_epoch=$(get_epoch_seconds) local days_since_modified=$(((current_epoch - last_modified_epoch) / 86400)) if [[ $days_since_modified -lt ${ORPHAN_AGE_THRESHOLD:-60} ]]; then return 1