diff options
author | Robby Russell <robby@planetargon.com> | 2015-10-09 22:53:10 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-10-09 22:53:10 -0700 |
commit | 101758f63d8f3417615918851f6b4dcd7e378354 (patch) | |
tree | 8f1ce28a8f39ca59e512c8fe75e353aace82e984 /plugins/autoenv/autoenv.plugin.zsh | |
parent | 2522ab4504376db4410bfa784dd1d582538fd576 (diff) | |
parent | 2d0e7fbdadce6a3d052ea0f33ccf9114a4b23c0a (diff) | |
download | zsh-101758f63d8f3417615918851f6b4dcd7e378354.tar.gz zsh-101758f63d8f3417615918851f6b4dcd7e378354.tar.bz2 zsh-101758f63d8f3417615918851f6b4dcd7e378354.zip |
Merge pull request #4481 from apjanke/autoenv-emerg-fix
autoenv: actually source autoenv once located
Diffstat (limited to 'plugins/autoenv/autoenv.plugin.zsh')
-rw-r--r-- | plugins/autoenv/autoenv.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/autoenv/autoenv.plugin.zsh b/plugins/autoenv/autoenv.plugin.zsh index c9f968118..ea2e56dd6 100644 --- a/plugins/autoenv/autoenv.plugin.zsh +++ b/plugins/autoenv/autoenv.plugin.zsh @@ -17,6 +17,7 @@ In the meantime the autoenv plugin is DISABLED. END return 1 fi + source $autoenv_dir/activate.sh fi } [[ $? != 0 ]] && return $? |