SERVER-112418 Fix env not getting applied in bazel_run.sh (#42591)

GitOrigin-RevId: 50124c48ed5903be1d3e4be9f6b9bfcdde31fd5c
This commit is contained in:
Zack Winter 2025-10-14 07:57:10 -10:00 committed by MongoDB Bot
parent 11cc1d739d
commit c676253748
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ bazel_evergreen_shutils::retry_bazel_cmd() {
# Run it.
# NOTE: We *do not* add any redirections here; caller controls logging completely.
if eval "$cmd"; then
if eval $env "$cmd"; then
RET=0
break
else