Skip to content

Commit 943f593

Browse files
authored
feat(query): ensure git is installed in pyenv (#15505)
1 parent 11b8c30 commit 943f593

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/setup/dev_setup.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,11 @@ function install_ziglang {
131131
}
132132

133133
function install_python3 {
134+
PACKAGE_MANAGER=$1
135+
if ! command -v git > /dev/null; then
136+
install_pkg git "$PACKAGE_MANAGER"
137+
fi
138+
134139
echo "==> installing python3 via pyenv..."
135140
curl https://pyenv.run | bash
136141

0 commit comments

Comments
 (0)