aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/ls.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2014-10-10 16:25:47 +1300
committerTom Ryder <tom@sanctum.geek.nz>2014-10-10 16:25:47 +1300
commite1401360121785b7dd7b5b5d7b7ef5b337e5bb39 (patch)
treeed7e1e9c7020e17d7acbe5a6bb173d6f6d94d854 /bash/bashrc.d/ls.bash
parentRemove brace expansion for grep alias (diff)
downloaddotfiles-e1401360121785b7dd7b5b5d7b7ef5b337e5bb39.tar.gz
dotfiles-e1401360121785b7dd7b5b5d7b7ef5b337e5bb39.zip
Move array decs inline, remove quotes
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 0dedfdcc..255d6cd3 100644
--- a/bash/bashrc.d/ls.bash
+++ b/bash/bashrc.d/ls.bash
@@ -11,7 +11,7 @@ lsopts() {
# at least eight colors, add --color=auto to the options
local colors=$(tput colors)
if [[ $lshelp == *--color* ]] && ((colors >= 8)) ; then
- lsopts=("${lsopts[@]}" '--color=auto')
+ lsopts=("${lsopts[@]}" --color=auto)
fi
# Print the options as a single string, space-delimited