SL-15500: Use plain pip install, not pip_install shell function.

pip_install doesn't know about the '-r requirements.txt' feature.
master
Nat Goodspeed 2021-06-29 18:04:03 -04:00
parent ab185263fa
commit 0276a32569
1 changed files with 2 additions and 1 deletions

View File

@ -281,7 +281,8 @@ python_cmd "$helpers/codeticket.py" addinput "Viewer Channel" "${viewer_channel}
initialize_version # provided by buildscripts build.sh; sets version id
# install the git-hooks dependencies
pip_install -r "$git_hooks_checkout/requirements.txt"
pip install -r "$git_hooks_checkout/requirements.txt" || \
fatal "pip install git-hooks failed"
# validate the branch we're about to build
python_cmd "$git_hooks_checkout/coding_policy_git.py" --all_files || \
fatal "coding policy check failed"