Commit cae540f8 authored by Italo Maia's avatar Italo Maia Committed by Marc Cornellà
Browse files

Adding new path to look for activate.sh (#5654)

If autoenv was installed with pip and modifier --user, activate.sh will be at .local/bin
parent 4608231b
# Activates autoenv or reports its failure
() {
if ! type autoenv_init >/dev/null; then
for d (~/.autoenv /usr/local/opt/autoenv /usr/local/bin); do
for d (~/.autoenv ~/.local/bin /usr/local/opt/autoenv /usr/local/bin); do
if [[ -e $d/activate.sh ]]; then
autoenv_dir=$d
break
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment