Browse Source

direnv: change direnv to not assume path (#8757)

On Ubuntu, direnv is not installed in `/usr/local`.
Dan Rose 5 years ago
parent
commit
fe5ec4fe31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/direnv/direnv.plugin.zsh

+ 1 - 1
plugins/direnv/direnv.plugin.zsh

@@ -1,6 +1,6 @@
 _direnv_hook() {
   trap -- '' SIGINT;
-  eval "$("/usr/local/bin/direnv" export zsh)";
+  eval "$(direnv export zsh)";
   trap - SIGINT;
 }
 typeset -ag precmd_functions;