Hello, I've recently started using this project in combination with direnv and noticed a small improvement. What's happening is the following
I cd into a directory with a .envrc file
Any command that's executed within this directory will always trigger an direnv: unloading hook
After some research, I found that this issue was related to set-env.zsh and the use of absolute_dir_path. In fact, I found a similar issue which was resolved:
https://github.com/halcyon/asdf-java/pull/144
In summary, the fix uses zsh's built in functionality to get the absolute dir path. This makes absolute_dir_path obsolete 🙂.
Hello, I've recently started using this project in combination with direnv and noticed a small improvement. What's happening is the following
After some research, I found that this issue was related to set-env.zsh and the use of absolute_dir_path. In fact, I found a similar issue which was resolved: https://github.com/halcyon/asdf-java/pull/144
In summary, the fix uses zsh's built in functionality to get the absolute dir path. This makes absolute_dir_path obsolete 🙂.