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() {
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))"
......
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