Skip to content

Commit 2ca87ce

Browse files
committed
fix handling of DRIVERS_TOOLS_BINARIES
1 parent 8b6f224 commit 2ca87ce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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
# Set where binaries are expected to be.
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
# On Windows spawn hosts, $HOME/cli_bin is on the PATH.
99
elif [ "Windows_NT" = "${OS:-}" ]; then
1010
_BIN_DIR=$HOME/cli_bin

.evergreen/scripts/prepare-resources.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ else
2424
fi
2525

2626
# Add 'server' and 'hostname_not_in_cert' as a hostnames
27-
# echo "127.0.0.1 server" | $SUDO tee -a /etc/hosts
28-
# echo "127.0.0.1 hostname_not_in_cert" | $SUDO tee -a /etc/hosts
27+
echo "127.0.0.1 server" | $SUDO tee -a /etc/hosts
28+
echo "127.0.0.1 hostname_not_in_cert" | $SUDO tee -a /etc/hosts

0 commit comments

Comments
 (0)