Skip to content

Commit

Permalink
Fixed color issue with files in ls output
Browse files Browse the repository at this point in the history
  • Loading branch information
ndbroadbent committed Aug 15, 2012
1 parent 9ef8a39 commit 8bef4be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/git/aliases_and_bindings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ EOF

# Set numbered file shortcut in variable
local e=1
for file in $(ls -v --group-directories-first); do
for file in $(ls -v --group-directories-first --color=never); do
export $git_env_char$e="$(readlink -f $file)"
if [ "${scmbDebug:-}" = "true" ]; then echo "Set \$$git_env_char$e => $file"; fi
let e++
Expand Down

0 comments on commit 8bef4be

Please sign in to comment.