fix: cd to correct pyenv share

This commit is contained in:
Price Hiller 2022-07-31 00:17:04 -05:00
parent d90f7cf08a
commit 36c3789ec7

View File

@ -173,7 +173,7 @@ install-pyenv() {
local install_path="${1}/pyenv"
git clone https://github.com/pyenv/pyenv.git "${install_path}" || return 1
(
cd "${install_path}/pyenv"
cd "${install_path}"
src/configure && make -C src
) || return 1
}