diff options
| author | Kyle Altendorf <[email protected]> | 2026-04-07 16:26:01 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-07 15:26:01 -0500 |
| commit | 095aeba0a77482f3061e623c7d91c29da76f195e (patch) | |
| tree | 9e015e60437a5b4e0f0d19cd9f8da98ded0ee8aa /packages/app | |
| parent | e945436b6f71afa4860e68558de17c6fba88a1f7 (diff) | |
| download | opencode-095aeba0a77482f3061e623c7d91c29da76f195e.tar.gz opencode-095aeba0a77482f3061e623c7d91c29da76f195e.zip | |
test: disable GPG signing in test fixtures (#20386)
Diffstat (limited to 'packages/app')
| -rw-r--r-- | packages/app/e2e/actions.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/app/e2e/actions.ts b/packages/app/e2e/actions.ts index b1c38afee..ac9439360 100644 --- a/packages/app/e2e/actions.ts +++ b/packages/app/e2e/actions.ts @@ -320,6 +320,7 @@ export async function createTestProject(input?: { serverUrl?: string }) { execSync("git init", { cwd: root, stdio: "ignore" }) await fs.writeFile(path.join(root, ".git", "opencode"), id) execSync("git config core.fsmonitor false", { cwd: root, stdio: "ignore" }) + execSync("git config commit.gpgsign false", { cwd: root, stdio: "ignore" }) execSync("git add -A", { cwd: root, stdio: "ignore" }) execSync('git -c user.name="e2e" -c user.email="[email protected]" commit -m "init" --allow-empty', { cwd: root, |
