Skip to content

Commit f75dfa0

Browse files
committed
fix git commit
1 parent cf78396 commit f75dfa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,6 @@ def run_command(cmd: str | list[str], **kwargs: Any) -> None:
193193

194194
def create_archive() -> str:
195195
run_command("git add .", cwd=ROOT)
196-
run_command('git commit -m "add files"', check=False, cwd=ROOT)
196+
run_command('git commit --no-verify -m "add files"', check=False, cwd=ROOT)
197197
run_command(f"git archive -o {TMP_DRIVER_FILE} HEAD", cwd=ROOT)
198198
return TMP_DRIVER_FILE

0 commit comments

Comments
 (0)