remove trailing zeros from _p9k_human_readable_bytes

pull/445/head
romkatv 5 years ago
parent fa4d151f94
commit 5d460d7b99

@ -218,7 +218,7 @@ function _p9k_human_readable_bytes() {
(( n < 100 )) && break (( n < 100 )) && break
(( n /= 1024 )) (( n /= 1024 ))
done done
_p9k_ret=$n$suf _p9k_ret=${${n%%0#}%.}$suf
} }
if is-at-least 5.4; then if is-at-least 5.4; then

Loading…
Cancel
Save