From e41126732fb75ec66a979c09544076ba92373680 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Fri, 28 Nov 2025 07:24:31 +0000 Subject: audit: fix push test when not isolated --- grasp-audit/src/fixtures.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grasp-audit/src') diff --git a/grasp-audit/src/fixtures.rs b/grasp-audit/src/fixtures.rs index 23cea37..8cee964 100644 --- a/grasp-audit/src/fixtures.rs +++ b/grasp-audit/src/fixtures.rs @@ -1199,7 +1199,7 @@ pub fn create_deterministic_commit(clone_path: &Path, _message: &str) -> Result< /// ``` pub fn try_push(clone_path: &Path) -> Result { let output = Command::new("git") - .args(["push", "origin", "main"]) + .args(["push", "origin", "main", "--force"]) .current_dir(clone_path) .env("GIT_TERMINAL_PROMPT", "0") .output() -- cgit v1.2.3