summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
authorAlberto Fanton <[email protected]>2025-10-14 06:40:41 +0200
committerGitHub <[email protected]>2025-10-13 23:40:41 -0500
commit7ef246f98fb6d152d45d31c6eec906bc167bd621 (patch)
tree95c88c8881aef403a54adf18b624785eb836340c /packages
parentb91582d68aefe5f7e1e8bd85b56171c0eac07147 (diff)
downloadopencode-7ef246f98fb6d152d45d31c6eec906bc167bd621.tar.gz
opencode-7ef246f98fb6d152d45d31c6eec906bc167bd621.zip
fix: disable GPG signing in snapshot tests (#3102)
Diffstat (limited to 'packages')
-rw-r--r--packages/opencode/test/snapshot/snapshot.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/test/snapshot/snapshot.test.ts b/packages/opencode/test/snapshot/snapshot.test.ts
index 5f15b9b4e..f053ec925 100644
--- a/packages/opencode/test/snapshot/snapshot.test.ts
+++ b/packages/opencode/test/snapshot/snapshot.test.ts
@@ -14,7 +14,7 @@ async function bootstrap() {
await Bun.write(`${dir}/a.txt`, aContent)
await Bun.write(`${dir}/b.txt`, bContent)
await $`git add .`.cwd(dir).quiet()
- await $`git commit -m init`.cwd(dir).quiet()
+ await $`git commit --no-gpg-sign -m init`.cwd(dir).quiet()
return {
aContent,
bContent,