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

This commit is contained in:
Dylan Araps 2016-11-04 20:09:27 +11:00
parent a2cad033d2
commit 7fbe91e8e8
1 changed files with 4 additions and 4 deletions

View File

@ -2308,15 +2308,15 @@ info() {
eval output="\$${2}"
fi
# Trim whitespace
output="$(trim "$output")"
# If the output is empty, don't print anything
if [ -z "$output" ]; then
err "Info: Couldn't detect $subtitle"
return
fi
# Trim whitespace
output="$(trim "$output")"
case "$1" in
title)
string="${title_color}${bold}${output}"
@ -2637,7 +2637,7 @@ bold() {
# Linebreak {{{
getlinebreak() {
linebreak=" "
linebreak=" "
# Calculate info height
info_height="$((info_height+=1))"