Philipp Hack
Philipp Hack
Could you please provide a minimal example to reproduce this?
I'll look into this. For now you can fix it by passing `@click_config_file.configuration_option(default='/tmp/.configfile', implicit=False)`
Seems like you want an explicit location for the configuration file instead of an implicit one. You can set any default path you like by setting a parameter: `@configuration_option(default='/some/dir')` It...
Sorry for the late answer. I fully agree with you that this should not (and indeed can not) be the responsibility of the configuration provider. I've looked into this and...
There might be a chance to fix this after pallets/click#590 is addressed.
Hi and thank you for your contribution. It's already possible to set a default path like this: `configuration_option(default="/foo/bar")` Adding another option for basically the same purpose seems inconsistent. What happens...
Hi, sorry for the late reply. I've been a little busy. I yet have to verify whether the default does indeed only set the file name and not the full...