From d3b896ca6876884aba3c16845166dc1cc04eede1 Mon Sep 17 00:00:00 2001 From: Sebastian Tramp Date: Thu, 23 Aug 2012 19:39:28 +0200 Subject: [PATCH] avoid error for unrecognized keyword MULTIHARDLINK --- linux.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux.zsh b/linux.zsh index 9484965..8d590a8 100644 --- a/linux.zsh +++ b/linux.zsh @@ -3,7 +3,7 @@ export ZSH_DIRCOLORS="$ZSH_CONFIG/dircolors-solarized/dircolors.256dark" if [[ -a $ZSH_DIRCOLORS ]]; then if [[ "$TERM" == *256* ]]; then - which dircolors > /dev/null && eval "`dircolors -b $ZSH_DIRCOLORS`" + which dircolors > /dev/null && eval "`dircolors -b $ZSH_DIRCOLORS 2>/dev/null`" else # standard colors for non-256-color terms which dircolors > /dev/null && eval "`dircolors -b`"