Skip to content

Commit

Permalink
Fix the config command for path values
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Aug 21, 2018
1 parent da6014c commit f4ad371
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Fixed

- Fixed a recursion error with circular dependencies.
- Fixed the `config` command setting incorrect values for paths.


## [0.11.4] - 2018-07-30
Expand Down
2 changes: 1 addition & 1 deletion poetry/console/commands/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def unique_config_values(self):
),
"settings.virtualenvs.path": (
str,
lambda val: str(Path(val).resolve()),
lambda val: str(Path(val)),
str(Path(CACHE_DIR) / "virtualenvs"),
),
}
Expand Down

0 comments on commit f4ad371

Please sign in to comment.