Skip to content
Snippets Groups Projects
Commit 2c2943de authored by Philipp Hörist's avatar Philipp Hörist
Browse files

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
parent 5981396a
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment