i recently aliased ls in .bashrc:
alias ls='lsd'
at the bottom of .bashrc, i have
source /usr/local/share/chruby/chruby.sh
which now errors out on the unsupported -A flag
a change of line
|
[[ -d "$dir" && -n "$(ls -A "$dir")" ]] && RUBIES+=("$dir"/*) |
from 'ls -A' to '/bin/ls -A' fixes this
i recently aliased ls in .bashrc:
alias ls='lsd'
at the bottom of .bashrc, i have
source /usr/local/share/chruby/chruby.sh
which now errors out on the unsupported -A flag
a change of line
chruby/share/chruby/chruby.sh
Line 5 in 4c46722
from 'ls -A' to '/bin/ls -A' fixes this