From f7aa3ea8edb8a70639c1ea0a16959daafdae2eaa Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Tue, 23 Aug 2022 11:33:17 -0400 Subject: [PATCH] [F] Fix char escape bug in strip_escape_codes() https://github.com/dylanaraps/neofetch/pull/1543 --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 33fdd2ac..1f95a550 100755 --- a/neofetch +++ b/neofetch @@ -4662,7 +4662,7 @@ strip_escape_codes() { fi output+="${char}" done - eval "$2=\"${output}\"" + eval "$2='${output}'" } print_ascii() {