From 0b8555705d2f9c12ab2e5cebee6b594cdfe6b4e0 Mon Sep 17 00:00:00 2001 From: Jeremy Mikola Date: Wed, 7 Sep 2022 23:32:09 -0400 Subject: [PATCH] Fix access of $DRIVER_MONGODB_VERSION env var (#970) This corrects a typo introduced in 0fe1a0f0b9ee54ce270980b2651b94fcc58921ff --- .evergreen/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.evergreen/run-tests.sh b/.evergreen/run-tests.sh index 3bc0f9601..c56e86b66 100755 --- a/.evergreen/run-tests.sh +++ b/.evergreen/run-tests.sh @@ -4,7 +4,7 @@ set -o errexit # Exit the script with error if any of the commands fail # Supported environment variables API_VERSION=${API_VERSION:-} # Optional API_VERSION environment variable CRYPT_SHARED_LIB_PATH="${CRYPT_SHARED_LIB_PATH:-}" # Optional path to crypt_shared library -DRIVER_MONGODB_VERSION={$DRIVER_MONGODB_VERSION:-} # Required if IS_MATRIX_TESTING is "true" +DRIVER_MONGODB_VERSION=${DRIVER_MONGODB_VERSION:-} # Required if IS_MATRIX_TESTING is "true" 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. MONGODB_URI=${MONGODB_URI:-} # Connection string (including credentials and topology info) MONGODB_VERSION=${MONGODB_VERSION:-} # Required if IS_MATRIX_TESTING is "true"