From b3084aa238e25a34ddce671cbe2419b9f0d7349c Mon Sep 17 00:00:00 2001 From: Jonathan Dahan Date: Fri, 27 Jan 2012 04:59:39 -0500 Subject: [PATCH] add missing newlines to update feedback --- functions/update-omz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/update-omz b/functions/update-omz index 8fdb8051..d9af39f8 100644 --- a/functions/update-omz +++ b/functions/update-omz @@ -23,10 +23,10 @@ zstyle -t ':omz:function:update-omz' upstream '_upstream' if git pull $nocommit --strategy=recursive -X ours ${_upstream:-origin} master; then zstyle -t ':omz:function:update-omz' color && printf "$FG[blue]" - printf 'Hooray! oh-my-zsh is up-to-date :)' + printf 'Hooray! oh-my-zsh is up-to-date :)\n' else zstyle -t ':omz:function:update-omz' color && printf "$FG[red]" - printf 'Oh no! There was an error updating oh-my-zsh :(' + printf 'Oh no! There was an error updating oh-my-zsh :(\n' fi cd "$current_path"