From 9e4434e5e5163aeb1bc94c15dcd4de223d1c5993 Mon Sep 17 00:00:00 2001 From: Joseph Durel Date: Thu, 1 Feb 2018 22:26:18 -0500 Subject: [PATCH] Add missing double-quotes in `uppercase()` fix --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index cd807825..b460019f 100755 --- a/neofetch +++ b/neofetch @@ -3265,7 +3265,7 @@ uppercase() { if ((bash_version >= 4)); then printf "%s" "${1^}" else - echo $1 + echo "$1" fi }