Skip to content
Snippets Groups Projects
Commit 0276a325 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

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

pip_install doesn't know about the '-r requirements.txt' feature.
parent ab185263
No related branches found
No related tags found
No related merge requests found
...@@ -281,7 +281,8 @@ python_cmd "$helpers/codeticket.py" addinput "Viewer Channel" "${viewer_channel} ...@@ -281,7 +281,8 @@ python_cmd "$helpers/codeticket.py" addinput "Viewer Channel" "${viewer_channel}
initialize_version # provided by buildscripts build.sh; sets version id initialize_version # provided by buildscripts build.sh; sets version id
# install the git-hooks dependencies # 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 # validate the branch we're about to build
python_cmd "$git_hooks_checkout/coding_policy_git.py" --all_files || \ python_cmd "$git_hooks_checkout/coding_policy_git.py" --all_files || \
fatal "coding policy check failed" fatal "coding policy check failed"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment