Skip to content

Commit 9d4b2b2

Browse files
committed
Add --signoff to git commit
Signed-off-by: Tim Meusel <tim@bastelfreak.de>
1 parent 437b5d5 commit 9d4b2b2

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)