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

chore: auto format code

This commit is contained in:
Tw93
2026-02-24 06:18:44 +00:00
parent b9c067fec9
commit 6754a5544b

View File

@@ -627,10 +627,10 @@ select_purge_categories() {
local selected_value
local selected_unit
if (( selected_size < 1024 )); then
if ((selected_size < 1024)); then
selected_value="$selected_size"
selected_unit="KB"
elif (( selected_size < 1024 * 1024 )); then
elif ((selected_size < 1024 * 1024)); then
selected_value=$(printf "%.2f" "$(echo "scale=4; $selected_size/1024" | bc)")
selected_unit="MB"
else