Victor Borja
Victor Borja
Hm, currently asdf is very dumb about versions, they can actually be anything. I mean, not only semantic versions, but things like "system", "ref:master", even "foobar" is valid (I have...
Perhaps something better would be allowing some custom hooks for pre-post tool installation (so you can create the symlinks I mentioned, IIRC other people have asked for executing some commands...
@mwean current branch has pre/post install hooks support (#434) . so you can try and use them to create symlinks as mentioned in previous comments.
I guess the easiest change would be to allow `plugin-add` to take a git branch/ref name (default to master) and use that when cloning the plugin.
Could you people test with current master (cc7886309271b21a7da3fccf8efc892b546ffbbb) and report if shim execution has improved with the new shim exec?
So, I just created a new plugin to integrate with [direnv](http://direnv.net/) which can hopefully improve execution time a lot. It works by exposing your asdf-tools environment (PATH and any other...
And benchmarks: https://github.com/asdf-community/asdf-direnv#benchmark
@andrewthauer Latest asdf release lets plugins enhance the CLI with additional commands (see [extension-commands](https://asdf-vm.com/#/plugins-create?id=extension-commands-for-asdf-cli)) So for example, if you have an `asdf-alias` plugin and install it via `asdf plugin add...
Current master supports pre/post command hooks (#434), you could use something like This example will reshim after you execute `cargo install` ```bash # in your $HOME/.asdfrc post_rust_cargo = my_post_cargo_install_hook ${@}...
@tutume You are looking for [asdf-direnv](https://github.com/asdf-community/asdf-direnv) then.