From b32d5773ae9297c597791971173769dcfb2bee47 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Wed, 30 Mar 2011 01:36:19 +0200 Subject: remove warning if dircolors is not available --- bashrc/common/dircolors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashrc/common/dircolors.sh b/bashrc/common/dircolors.sh index f26a163..901240d 100644 --- a/bashrc/common/dircolors.sh +++ b/bashrc/common/dircolors.sh @@ -1,4 +1,4 @@ # colored output for ls -if hash dircolors; then +if hash dircolors 2>/dev/null ; then eval $(dircolors -b) fi -- cgit v1.2.3