On Fri, Sep 22, 2023 at 3:05 PM Blake McBride blake@mcbridemail.com wrote:
How can I force asdf to load and use the package in the local directory rather than the cached standard distribution?
My understanding is that the following is poor form (I seem to recall ASDF:*CENTRAL-REGISTRY* is deprecated), however, perhaps it is still useful to you. Try:
(push "./" asdf:*central-registry*)
This helps ASDF see systems in the current directory, however, I guess I don't know whether this ensures that a system in the current directory is loaded instead of any identically-named systems in other directories.
Hope this helps,
Robert