llimllib / limbo

A simple, clean, easy to modify Slack chatbot
MIT License
403 stars 160 forks source link

Minor documentation issue #113

Closed topher200 closed 7 years ago

topher200 commented 7 years ago

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.