Determine absolut path for custom config folder
When a relative custom config path is passed via commandline, the logic which decides if a plugin can be deleted from the plugin manager fails
This commit is contained in:
parent
62b210a9e5
commit
e509a68139
|
@ -69,7 +69,7 @@ def set_profile(profile: str) -> None:
|
|||
|
||||
|
||||
def set_config_root(config_root: str) -> None:
|
||||
_paths.custom_config_root = config_root
|
||||
_paths.custom_config_root = str(Path(config_root).resolve())
|
||||
|
||||
|
||||
def init() -> None:
|
||||
|
|
Loading…
Reference in New Issue