Method: Svn#commit

Defined in:
lib/version_control/svn.rb

#commit(message = "Automation pushed changes") ⇒ Object

Performs an svn commit

Attributes

  • message - commit string

Returns

  • command output



126
127
128
129
130
# File 'lib/version_control/svn.rb', line 126

def commit(message = "Automation pushed changes")
  # /usr/bin/svn commit . -m "PSENG-0000 Adding PSENG files"
  cmd = "#{@svn} commit . -m \"#{message}\""
  process_cmd(cmd)
end