Skip to content

Commit 0b85557

Browse files
authored
Fix access of $DRIVER_MONGODB_VERSION env var (#970)
This corrects a typo introduced in 0fe1a0f
1 parent 0fe1a0f commit 0b85557

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .evergreen/run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -o errexit # Exit the script with error if any of the commands fail
44
# Supported environment variables
55
API_VERSION=${API_VERSION:-} # Optional API_VERSION environment variable
66
CRYPT_SHARED_LIB_PATH="${CRYPT_SHARED_LIB_PATH:-}" # Optional path to crypt_shared library
7-
DRIVER_MONGODB_VERSION={$DRIVER_MONGODB_VERSION:-} # Required if IS_MATRIX_TESTING is "true"
7+
DRIVER_MONGODB_VERSION=${DRIVER_MONGODB_VERSION:-} # Required if IS_MATRIX_TESTING is "true"
88
IS_MATRIX_TESTING=${IS_MATRIX_TESTING:-} # Specify "true" to enable matrix testing. Defaults to empty string. If "true", DRIVER_MONGODB_VERSION and MONGODB_VERSION will also be checked.
99
MONGODB_URI=${MONGODB_URI:-} # Connection string (including credentials and topology info)
1010
MONGODB_VERSION=${MONGODB_VERSION:-} # Required if IS_MATRIX_TESTING is "true"

0 commit comments

Comments
 (0)