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
5981396ac4
commit
2c2943deff
|
@ -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…
Reference in New Issue