Commit f4ad371e by Sébastien Eustace

Fix the config command for path values

parent da6014c9
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
### Fixed ### Fixed
- Fixed a recursion error with circular dependencies. - Fixed a recursion error with circular dependencies.
- Fixed the `config` command setting incorrect values for paths.
## [0.11.4] - 2018-07-30 ## [0.11.4] - 2018-07-30
......
...@@ -64,7 +64,7 @@ To remove a repository (repo is a short alias for repositories): ...@@ -64,7 +64,7 @@ To remove a repository (repo is a short alias for repositories):
), ),
"settings.virtualenvs.path": ( "settings.virtualenvs.path": (
str, str,
lambda val: str(Path(val).resolve()), lambda val: str(Path(val)),
str(Path(CACHE_DIR) / "virtualenvs"), str(Path(CACHE_DIR) / "virtualenvs"),
), ),
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment