From 8c0e999ebc23a0dedd243db581a72ffbf9849ee0 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Thu, 24 Apr 2014 16:14:25 +0200 Subject: [PATCH] Fix test for "ccache". Oops. --- sys/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/profile b/sys/profile index cd69ef9..368d07e 100644 --- a/sys/profile +++ b/sys/profile @@ -114,7 +114,7 @@ export HOSTNAME export XDG_CACHE_HOME="$LOCAL_HOME/.cache" # Setup environment for ccache, if installed -type -t ccache 2>/dev/null && export CCACHE_DIR="$XDG_CACHE_HOME/ccache" +type -t ccache >/dev/null && export CCACHE_DIR="$XDG_CACHE_HOME/ccache" # Setup environment for Python "pip", if installed if [ "$(type -t pip 2>/dev/null)" ]; then -- 2.39.2