Commit 7fbe91e8 authored by Dylan Araps's avatar Dylan Araps

General: Fix issue with no info printed if whitespace was in the output

parent a2cad033
...@@ -2308,15 +2308,15 @@ info() { ...@@ -2308,15 +2308,15 @@ info() {
eval output="\$${2}" eval output="\$${2}"
fi fi
# Trim whitespace
output="$(trim "$output")"
# If the output is empty, don't print anything # If the output is empty, don't print anything
if [ -z "$output" ]; then if [ -z "$output" ]; then
err "Info: Couldn't detect $subtitle" err "Info: Couldn't detect $subtitle"
return return
fi fi
# Trim whitespace
output="$(trim "$output")"
case "$1" in case "$1" in
title) title)
string="${title_color}${bold}${output}" string="${title_color}${bold}${output}"
...@@ -2637,7 +2637,7 @@ bold() { ...@@ -2637,7 +2637,7 @@ bold() {
# Linebreak {{{ # Linebreak {{{
getlinebreak() { getlinebreak() {
linebreak=" " linebreak=" "
# Calculate info height # Calculate info height
info_height="$((info_height+=1))" info_height="$((info_height+=1))"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment