Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 4c6ab4d

Browse files
committed
fix(commit): avoid warnings with 'always_signoff' configuration
Signed-off-by: Adrian DC <radian.dc@gmail.com>
1 parent 839aba9 commit 4c6ab4d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

‎commitizen/commands/commit.py‎

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,16 +110,17 @@ def __call__(self):
110110
if dry_run:
111111
raise DryRunExit()
112112

113-
signoff: bool = (
114-
self.arguments.get("signoff") or self.config.settings["always_signoff"]
115-
)
113+
always_signoff: bool = self.config.settings["always_signoff"]
114+
signoff: bool = self.arguments.get("signoff")
116115

117116
extra_args = self.arguments.get("extra_cli_args", "")
118117

119118
if signoff:
120119
out.warn(
121120
"signoff mechanic is deprecated, please use `cz commit -- -s` instead."
122121
)
122+
123+
if always_signoff or signoff:
123124
extra_args = f"{extra_args} -s".strip()
124125

125126
c = git.commit(m, args=extra_args)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /