Skip to content

Commit 43fe586

Browse files
committed
Add --signoff to git commit
1 parent 27147e8 commit 43fe586

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tasks/update_gems.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ def git_commit(message)
445445
warn "git diff --cached failed:\n#{err}\n#{out}" unless ok
446446
return if !ok || out.strip.empty?
447447

448-
args = ['git', '-C', REPO_ROOT, 'commit', '-m', 'Update rubygem components']
448+
args = ['git', '-C', REPO_ROOT, 'commit', '-m', 'Update rubygem components', '--signoff']
449449
args += ['-m', message] unless message.empty?
450450

451451
_, err, ok = Open3.capture3(*args)

0 commit comments

Comments
 (0)