Преглед изворни кода

fix: disable GPG signing in snapshot tests (#3102)

Alberto Fanton пре 4 месеци
родитељ
комит
7ef246f98f
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      packages/opencode/test/snapshot/snapshot.test.ts

+ 1 - 1
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}/a.txt`, aContent)
       await Bun.write(`${dir}/b.txt`, bContent)
       await Bun.write(`${dir}/b.txt`, bContent)
       await $`git add .`.cwd(dir).quiet()
       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 {
       return {
         aContent,
         aContent,
         bContent,
         bContent,