parse error fix

This commit is contained in:
Toon Claes 2009-11-05 20:48:08 +01:00
parent 600efef0c3
commit 9c0dcdaefc
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ export LSCOLORS="Gxfxcxdxbxegedabagacad"
#export LS_COLORS
# Enable ls colors
if [ "$DISABLE_LS_COLORS" != "true" ] then
if [ "$DISABLE_LS_COLORS" != "true" ]
then
# Find the option for using colors in ls, depending on the version: Linux or BSD
ls --color -d . &>/dev/null 2>&1 && alias ls='ls --color=tty' || alias ls='ls -G'
fi