Skip to content

Commit 2bd633d

Browse files
committed
fix install-deps
1 parent 563c74d commit 2bd633d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.evergreen/install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -eu
44
# Install just.
55
# On Evergreen jobs, "CI" will be set, and we don't want to write to $HOME.
66
if [ "${CI:-}" == "true" ]; then
7-
BIN_DIR=$DRIVERS_TOOLS_BINARIES
7+
BIN_DIR=${DRIVERS_TOOLS_BINARIES:-}
88
else
99
BIN_DIR=$HOME/.local/bin
1010
fi

.evergreen/scripts/setup-dev-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ else
1717
BIN_DIR=.venv/bin
1818
fi
1919

20-
. $HERE/install-dependencies.sh
20+
. $HERE/../install-dependencies.sh
2121

2222
# Ensure there is a python venv.
2323
if [ ! -d $BIN_DIR ]; then

0 commit comments

Comments
 (0)