From 1d3f9f29f4cfe3c32d18a98a1dc16b1bfce9e7e6 Mon Sep 17 00:00:00 2001 From: Daniel Cousens <413395+dcousens@users.noreply.github.com> Date: Wed, 19 Oct 2022 15:04:26 +1100 Subject: [PATCH] fix forceSignAnnotated typo (#984) --- packages/git/src/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/git/src/index.test.ts b/packages/git/src/index.test.ts index 30049ae89..ee3037e4a 100644 --- a/packages/git/src/index.test.ts +++ b/packages/git/src/index.test.ts @@ -53,7 +53,7 @@ describe("git", () => { await spawn("git", ["config", "user.name", "xyz"], { cwd }); await spawn("git", ["config", "commit.gpgSign", "false"], { cwd }); await spawn("git", ["config", "tag.gpgSign", "false"], { cwd }); - await spawn("git", ["config", "tag.forceSignAnnotataled", "false"], { + await spawn("git", ["config", "tag.forceSignAnnotated", "false"], { cwd, }); });