Skip to content

Commit

Permalink
feat(query): ensure git is installed in pyenv (#15505)
Browse files Browse the repository at this point in the history
  • Loading branch information
sundy-li authored May 13, 2024
1 parent 11b8c30 commit 943f593
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/setup/dev_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ function install_ziglang {
}

function install_python3 {
PACKAGE_MANAGER=$1
if ! command -v git > /dev/null; then
install_pkg git "$PACKAGE_MANAGER"
fi

echo "==> installing python3 via pyenv..."
curl https://pyenv.run | bash

Expand Down

0 comments on commit 943f593

Please sign in to comment.