summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2021-06-30 08:11:30 -0400
committerNat Goodspeed <nat@lindenlab.com>2021-06-30 08:11:30 -0400
commitd2de2f9d252be32b262b929fe7565729417d789b (patch)
treeb29ee674443fb8048f2bcb87f08a7de033c516d3 /build.sh
parent0276a325695f513df045ca5ffd97df478b23a95d (diff)
SL-15500: Always have to work around Windows path incompatibilities.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 24090dd747..64aa402fae 100755
--- a/build.sh
+++ b/build.sh
@@ -281,7 +281,7 @@ 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 "$(native_path "$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 || \