We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf78396 commit f75dfa0Copy full SHA for f75dfa0
.evergreen/scripts/utils.py
@@ -193,6 +193,6 @@ def run_command(cmd: str | list[str], **kwargs: Any) -> None:
193
194
def create_archive() -> str:
195
run_command("git add .", cwd=ROOT)
196
- run_command('git commit -m "add files"', check=False, cwd=ROOT)
+ run_command('git commit --no-verify -m "add files"', check=False, cwd=ROOT)
197
run_command(f"git archive -o {TMP_DRIVER_FILE} HEAD", cwd=ROOT)
198
return TMP_DRIVER_FILE
0 commit comments