Skip to content

Commit 9dbfb25

Browse files
committed
debug path
1 parent 0169abf commit 9dbfb25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.evergreen/scripts/install-dependencies.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi
1313
_BIN_DIR=${PYMONGO_BIN_DIR:-}
1414

1515
# Handle remote containers/VMS.
16-
if [ -z "$BIN_DIR" ] && [ "$(uname -s)" = "Linux" ]; then
16+
if [ -z "$_BIN_DIR" ] && [ "$(uname -s)" = "Linux" ]; then
1717
_BIN_DIR=/usr/local/bin
1818
fi
1919

@@ -33,7 +33,7 @@ function _pip_install() {
3333

3434
# Ensure just is installed.
3535
if ! command -v just 2>/dev/null; then
36-
if [ -z "$BIN_DIR" ]; then
36+
if [ -z "$_BIN_DIR" ]; then
3737
echo "Please install just!"
3838
exit 1
3939
fi
@@ -52,7 +52,7 @@ fi
5252

5353
# Install uv.
5454
if ! command -v uv 2>/dev/null; then
55-
if [ -z "$BIN_DIR" ]; then
55+
if [ -z "$_BIN_DIR" ]; then
5656
echo "Please install uv!"
5757
exit 1
5858
fi

0 commit comments

Comments
 (0)