From 7bf2654c76deaa7ad3f1ccd54c845f60a1c72083 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 16 Nov 2016 13:03:45 +1100 Subject: [PATCH] trim_quotes: Fix bug with only one type of quote being removed --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 73af19dc..c20039b9 100755 --- a/neofetch +++ b/neofetch @@ -2394,7 +2394,7 @@ trim() { trim_quotes() { trim_output="${1//\'}" - trim_output="${1//\"}" + trim_output="${trim_output//\"}" printf "%s" "$trim_output" }