diff options
Diffstat (limited to 'grasp-audit/src')
| -rw-r--r-- | grasp-audit/src/fixtures.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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< | |||
| 1199 | /// ``` | 1199 | /// ``` |
| 1200 | pub fn try_push(clone_path: &Path) -> Result<bool, String> { | 1200 | pub fn try_push(clone_path: &Path) -> Result<bool, String> { |
| 1201 | let output = Command::new("git") | 1201 | let output = Command::new("git") |
| 1202 | .args(["push", "origin", "main"]) | 1202 | .args(["push", "origin", "main", "--force"]) |
| 1203 | .current_dir(clone_path) | 1203 | .current_dir(clone_path) |
| 1204 | .env("GIT_TERMINAL_PROMPT", "0") | 1204 | .env("GIT_TERMINAL_PROMPT", "0") |
| 1205 | .output() | 1205 | .output() |