The documentation says that the default plugins directory is /plugins. That implies that if the user makes this their run command, they'd be getting the default behavior:
.PHONY: run
run: install
bin/limbo --pluginpath /plugins
That's not true! It actually needs to be this:
.PHONY: run
run: install
bin/limbo --pluginpath limbo/plugins
We should update the documentation to match behavior.
The documentation says that the default plugins directory is
/plugins
. That implies that if the user makes this their run command, they'd be getting the default behavior:That's not true! It actually needs to be this:
We should update the documentation to match behavior.