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
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ def set_profile(profile: str) -> None:
|
||||||
|
|
||||||
|
|
||||||
def set_config_root(config_root: 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:
|
def init() -> None:
|
||||||
|
|
Loading…
Add table
Reference in a new issue