diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-30 22:10:59 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-30 22:10:59 -0600 |
commit | 4af1cb74ad3c3275d3352febf9e14e19f368d65a (patch) | |
tree | d2d3507c8b7b8a098fcefd31f2168c0d2d68abf1 /plugins/autoenv/autoenv.plugin.zsh | |
parent | 338947a74f9b042bb2550fad236ceae270c2280b (diff) | |
parent | 9263e9ca59a65cad53d1cf0581c2af344984c2af (diff) | |
download | zsh-4af1cb74ad3c3275d3352febf9e14e19f368d65a.tar.gz zsh-4af1cb74ad3c3275d3352febf9e14e19f368d65a.tar.bz2 zsh-4af1cb74ad3c3275d3352febf9e14e19f368d65a.zip |
Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/autoenv/autoenv.plugin.zsh')
-rw-r--r-- | plugins/autoenv/autoenv.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/autoenv/autoenv.plugin.zsh b/plugins/autoenv/autoenv.plugin.zsh index ea2e56dd6..af58ee77b 100644 --- a/plugins/autoenv/autoenv.plugin.zsh +++ b/plugins/autoenv/autoenv.plugin.zsh @@ -1,7 +1,7 @@ # Activates autoenv or reports its failure () { if ! type autoenv_init >/dev/null; then - for d (~/.autoenv /usr/local/opt/autoenv); do + for d (~/.autoenv /usr/local/opt/autoenv /usr/local/bin); do if [[ -e $d/activate.sh ]]; then autoenv_dir=$d break |