From 57402031c41728be58ff42118716b647e7c26484 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 17 Feb 2015 12:53:32 -0500 Subject: [PATCH] Quick fix for a small output error in the update script --- update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update b/update index 592dc61..d755f70 100755 --- a/update +++ b/update @@ -213,7 +213,7 @@ fi process_status="$(git pull origin master 2>&1)" if [[ $? = 0 ]]; then if ! grep -q "Already up-to-date" <<< "$process_status"; then - printf '%s\n'"$cfg_green_bold SUCCESS! $c_reset" + printf '%s\n' "$cfg_green_bold SUCCESS! $c_reset" else printf '%s\n' "$cfg_white_bold UP TO DATE $c_reset" fi