Merge pull request #136 from williamboman/patch-1

Thanks for fixing this!
This commit is contained in:
Jeremy Cook
2015-02-20 09:19:15 -05:00

View File

@@ -88,7 +88,7 @@ module Homesick
def git_commit_all(config = {}) def git_commit_all(config = {})
say_status 'git commit all', '', :green say_status 'git commit all', '', :green
if config[:message] if config[:message]
system "git commit -a -m '#{config[:message]}'" system %Q(git commit -a -m "#{config[:message]}")
else else
system 'git commit -v -a' system 'git commit -v -a'
end end