From 9681c2cd8e025f24c93fc7ad7d8a76772ddd2a3c Mon Sep 17 00:00:00 2001 From: Zack Winter <3457246+zackwintermdb@users.noreply.github.com> Date: Wed, 9 Apr 2025 13:44:12 -0700 Subject: [PATCH] SERVER-103640 Fix SSL_CERT_DIR typo (#34836) GitOrigin-RevId: 81b723b46386a0c3adefdf6c1d18554d35eeeae9 --- tools/bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bazel b/tools/bazel index 61119321234..74cc2ef4fc0 100755 --- a/tools/bazel +++ b/tools/bazel @@ -103,7 +103,7 @@ cert_locs+=("/etc/ssl/cert.pem") # Alpine Linux for cert in ${cert_locs[@]}; do if [ -f $cert ]; then - export SSL_CERT_DI=R$(dirname $cert) + export SSL_CERT_DIR=$(dirname $cert) export SSL_CERT_FILE=$cert break fi