From 66b4194daf1970b7a000f9c3bdb2fdd34727af33 Mon Sep 17 00:00:00 2001 From: John Koelndorfer Date: Tue, 6 Oct 2015 10:20:52 -0500 Subject: [PATCH] Quote value of IS_BSD_SED. If this isn't quoted, in can bleed through to stdout in certain circumstances. --- powerlevel9k.zsh-theme | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 0c69a02e..c2ee2625 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -317,8 +317,7 @@ esac # `sed` is unfortunately not consistent across OSes when it comes to flags. SED_EXTENDED_REGEX_PARAMETER="-r" if [[ "$OS" == 'OSX' ]]; then - local IS_BSD_SED - IS_BSD_SED=$(sed --version &>> /dev/null || echo "BSD sed") + local IS_BSD_SED="$(sed --version &>> /dev/null || echo "BSD sed")" if [[ -n "$IS_BSD_SED" ]]; then SED_EXTENDED_REGEX_PARAMETER="-E" fi