From 703b7ba5da1f5b0aedef0bdb2a29a006f6111b28 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Thu, 11 Mar 2010 17:06:48 +0100 Subject: [PATCH] shell/aliases: Fix colors in normal ls. This bug was introduced in 0b47efd8a633ce89b988f5cd39410b8cfe3c37ae where I forgot to add the -G. --- shell/aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/aliases b/shell/aliases index 8edbc3f..d9e827e 100644 --- a/shell/aliases +++ b/shell/aliases @@ -50,7 +50,7 @@ if [ x$ls_color = xgnu ]; then # Normal ls with colors. elif [ x$ls_color = xcli ]; then ls() { - CLICOLOR_FORCE=1 my_ls $* + CLICOLOR_FORCE=1 my_ls -G $* } # Simple ls with no colors. else -- 2.44.1