From 5efe9439addeb3a2d046fa5068bbe79e8a77181b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Va=C5=A1=C3=ADk?= Date: Wed, 13 Jan 2016 12:53:38 +0100 Subject: [PATCH] fix one still existing occurance of non-full path in colorls.sh --- coreutils-colorls.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreutils-colorls.sh b/coreutils-colorls.sh index c3f6a43..cfd2288 100755 --- a/coreutils-colorls.sh +++ b/coreutils-colorls.sh @@ -47,7 +47,7 @@ if [ -z "$USER_LS_COLORS" ]; then fi [ -z "$LS_COLORS" ] && return - grep -qi "^COLOR.*none" $COLORS >/dev/null 2>/dev/null && return + /usr/bin/grep -qi "^COLOR.*none" $COLORS >/dev/null 2>/dev/null && return fi unset TMP COLORS INCLUDE