Correct caching for pyproject.toml

This commit is contained in:
Alex Jurkiewicz 2023-10-12 14:37:53 +08:00
parent 893e130bd1
commit 7e835be2d8

View file

@ -4298,7 +4298,7 @@ _virtualenv_load_name_poetry() {
local idx=$1 local idx=$1
local dir=${_p9k__parent_dirs[idx]} local dir=${_p9k__parent_dirs[idx]}
local pyproject="$dir/pyproject.toml" local pyproject="$dir/pyproject.toml"
_p9k_cached_cmd 0 '$pyproject' poetry -C "$dir" version _p9k_cached_cmd 0 "$pyproject" poetry -C "$dir" version
# Return the first word only, eg the value of pyproject.toml's `poetry.name` # Return the first word only, eg the value of pyproject.toml's `poetry.name`
_virtualenv_name="${_p9k__ret%% *}" _virtualenv_name="${_p9k__ret%% *}"
} }