summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2021-06-29 18:04:03 -0400
committerNat Goodspeed <nat@lindenlab.com>2021-06-29 18:04:03 -0400
commit0276a325695f513df045ca5ffd97df478b23a95d (patch)
tree46c9993b74242e402f83401faede99876a32dd92 /build.sh
parentab185263fa43141ff325edb8dace25f99e685c3d (diff)
SL-15500: Use plain pip install, not pip_install shell function.
pip_install doesn't know about the '-r requirements.txt' feature.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index e059af4ded..24090dd747 100755
--- a/build.sh
+++ b/build.sh
@@ -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"