From 552e9fbcb85e378b45e90770f6d9c60f2124fe9f Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Tue, 21 Aug 2012 13:43:55 +1200 Subject: [PATCH] Fixed ll for Linux --- lib/git/shell_shortcuts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/git/shell_shortcuts.sh b/lib/git/shell_shortcuts.sh index e93311d..6cffa74 100644 --- a/lib/git/shell_shortcuts.sh +++ b/lib/git/shell_shortcuts.sh @@ -55,7 +55,7 @@ _uname="$(uname)" if [ "$_uname" = "Linux" ]; then # Linux ls commands _ll_command="ls -l --group-directories-first --color" - _ll_sys_command="ls --color=never" + _ll_sys_command="ls --group-directories-first --color=never" elif [ "$_uname" = "Darwin" ]; then # OS X ls commands _ll_command="ls -l -G"