We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0169abf commit 9dbfb25Copy full SHA for 9dbfb25
.evergreen/scripts/install-dependencies.sh
@@ -13,7 +13,7 @@ fi
13
_BIN_DIR=${PYMONGO_BIN_DIR:-}
14
15
# Handle remote containers/VMS.
16
-if [ -z "$BIN_DIR" ] && [ "$(uname -s)" = "Linux" ]; then
+if [ -z "$_BIN_DIR" ] && [ "$(uname -s)" = "Linux" ]; then
17
_BIN_DIR=/usr/local/bin
18
fi
19
@@ -33,7 +33,7 @@ function _pip_install() {
33
34
# Ensure just is installed.
35
if ! command -v just 2>/dev/null; then
36
- if [ -z "$BIN_DIR" ]; then
+ if [ -z "$_BIN_DIR" ]; then
37
echo "Please install just!"
38
exit 1
39
@@ -52,7 +52,7 @@ fi
52
53
# Install uv.
54
if ! command -v uv 2>/dev/null; then
55
56
echo "Please install uv!"
57
58
0 commit comments