17
18
19
20
21
22
|
# File 'lib/docman/commands/git_commit_cmd.rb', line 17
def execute
message = "name: #{@context['name']} updated, state: #{@context.state_name}"
with_logging(message) do
GitUtil.commit(@context['root']['full_build_path'], @context['full_build_path'], message)
end
end
|