From 36c3789ec73d6f02dbcf5a1cfbf048f2d04868af Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 31 Jul 2022 00:17:04 -0500 Subject: [PATCH] fix: cd to correct pyenv share --- install.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.bash b/install.bash index c31ab0c..6327bd7 100644 --- a/install.bash +++ b/install.bash @@ -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 }