Browse Source

ref: fix `make install-js-dev` in getsentry (#67169)

getsentry runs this script with an alternative cwd -- ensure we always
look at the sentry requirements to bootstrap sentry-cli

<!-- Describe your PR here. -->
anthony sottile 11 months ago
parent
commit
bb97450188
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/lib.sh

+ 1 - 1
scripts/lib.sh

@@ -91,7 +91,7 @@ sudo-askpass() {
 }
 
 pip-install() {
-    pip install --constraint requirements-dev-frozen.txt "$@"
+    pip install --constraint "${HERE}/../requirements-dev-frozen.txt" "$@"
 }
 
 upgrade-pip() {