upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/grasp-audit
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-12-02 21:28:59 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-12-02 21:28:59 +0000
commit53a11dcfaeac6b3d4f631f1d22d095469a0e3690 (patch)
treeca04c1911e02c08757a3db2cab32a07c11c62708 /grasp-audit
parent72683beea066d066637e747c40dc859fb709babf (diff)
fix: tests using gpg signer
Diffstat (limited to 'grasp-audit')
-rw-r--r--grasp-audit/src/fixtures.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/grasp-audit/src/fixtures.rs b/grasp-audit/src/fixtures.rs
index cc2d2f6..174f83d 100644
--- a/grasp-audit/src/fixtures.rs
+++ b/grasp-audit/src/fixtures.rs
@@ -1756,7 +1756,7 @@ pub fn create_commit(clone_path: &Path, message: &str) -> Result<String, String>
1756 } 1756 }
1757 1757
1758 let output = Command::new("git") 1758 let output = Command::new("git")
1759 .args(["commit", "-m", message]) 1759 .args(["-c", "commit.gpgsign=false", "commit", "-m", message])
1760 .current_dir(clone_path) 1760 .current_dir(clone_path)
1761 .output() 1761 .output()
1762 .map_err(|e| format!("Git commit failed: {}", e))?; 1762 .map_err(|e| format!("Git commit failed: {}", e))?;