浏览代码

parse error fix

Toon Claes 15 年之前
父节点
当前提交
bbef2db92b
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lib/appearance.zsh

+ 2 - 1
lib/appearance.zsh

@@ -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