aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/ls.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bashrc.d/ls.bash')
-rw-r--r--bash/bashrc.d/ls.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc.d/ls.bash b/bash/bashrc.d/ls.bash
index 51a80d97..0dedfdcc 100644
--- a/bash/bashrc.d/ls.bash
+++ b/bash/bashrc.d/ls.bash
@@ -10,7 +10,7 @@ lsopts() {
# If the --color option is available and we have a terminal that supports
# at least eight colors, add --color=auto to the options
local colors=$(tput colors)
- if [[ $lshelp == *--color* ]] && ((colors >= 8)); then
+ if [[ $lshelp == *--color* ]] && ((colors >= 8)) ; then
lsopts=("${lsopts[@]}" '--color=auto')
fi