diff options
author | trahman1318 <tausif.rahman@mongodb.com> | 2022-03-14 17:44:05 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-03-14 18:36:28 +0000 |
commit | dc1f2cc8df0271451a6380150af3ecf3dd6b8933 (patch) | |
tree | 62e145faee719fc1740fe2f06e7849afb94faf39 /evergreen | |
parent | f59871be9db084e1148af7c685239d22819e3273 (diff) | |
download | mongo-dc1f2cc8df0271451a6380150af3ecf3dd6b8933.tar.gz |
SERVER-64469 Unbound Variable Error in antithesis_image_build.sh
Diffstat (limited to 'evergreen')
-rw-r--r-- | evergreen/antithesis_image_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evergreen/antithesis_image_build.sh b/evergreen/antithesis_image_build.sh index 64de089d7bb..0b986770102 100644 --- a/evergreen/antithesis_image_build.sh +++ b/evergreen/antithesis_image_build.sh @@ -57,7 +57,7 @@ if [ "${is_patch}" = "true" ]; then tag="evergreen-patch" fi -if [ -n "${antithesis_image_tag}" ]; then +if [ -n "${antithesis_image_tag:-}" ]; then echo "Using provided tag: '$antithesis_image_tag' for docker pushes" tag=$antithesis_image_tag fi |