From ce24e51a20cdba2cb7aee465b10bf0c2e350733e Mon Sep 17 00:00:00 2001 From: Maxim Katcharov Date: Mon, 6 May 2024 16:37:44 -0600 Subject: [PATCH] Allow empty commits for OIDC evergreen script --- .evergreen/.evg.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.evergreen/.evg.yml b/.evergreen/.evg.yml index 58369f23a59..28a6cd33295 100644 --- a/.evergreen/.evg.yml +++ b/.evergreen/.evg.yml @@ -992,7 +992,7 @@ tasks: ${PREPARE_SHELL} cd src git add . - git commit -m "add files" + git commit --allow-empty -m "add files" # uncompressed tar used to allow appending .git folder export AZUREOIDC_DRIVERS_TAR_FILE=/tmp/mongo-java-driver.tar git archive -o $AZUREOIDC_DRIVERS_TAR_FILE HEAD @@ -1010,7 +1010,7 @@ tasks: ${PREPARE_SHELL} cd src git add . - git commit -m "add files" + git commit --allow-empty -m "add files" # uncompressed tar used to allow appending .git folder export GCPOIDC_DRIVERS_TAR_FILE=/tmp/mongo-java-driver.tar git archive -o $GCPOIDC_DRIVERS_TAR_FILE HEAD