From c39181e5bd79ca9d05bbc8e0f9ca581bb2fbb3b4 Mon Sep 17 00:00:00 2001 From: Takanori Matsumoto Date: Mon, 18 Mar 2024 13:29:35 +0900 Subject: [PATCH] fix(cli.ts): fix the commit function call by passing the correct arguments to the commit function (#313) --- src/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.ts b/src/cli.ts index 7baf6e3..5bd204e 100755 --- a/src/cli.ts +++ b/src/cli.ts @@ -29,7 +29,7 @@ cli( if (await isHookCalled()) { prepareCommitMessageHook(); } else { - commit(extraArgs, flags.fgm); + commit(extraArgs, false, flags.fgm); } }, extraArgs