From 84b8b04d83e0f1d0b8e42c1305387106ee40c8c2 Mon Sep 17 00:00:00 2001 From: Dylan Date: Sat, 6 Feb 2016 02:36:00 +1100 Subject: [PATCH] Remove newline in if statement --- fetch | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fetch b/fetch index cd2884c2..dcf448f8 100755 --- a/fetch +++ b/fetch @@ -1829,8 +1829,7 @@ info () { underline_color title_color at_color # Show/Hide subtitles - [ "$stdout_subtitles" == "off" ] && \ - string=${string/*: } + [ "$stdout_subtitles" == "off" ] && string=${string/*: } # If the string isn't empty, print it. [ ! -z "$string" ] && printf "%s" "${string}${stdout_seperator}"