diff --git a/lib/shared/runnable.rb b/lib/shared/runnable.rb index ed122c0..285ee24 100644 --- a/lib/shared/runnable.rb +++ b/lib/shared/runnable.rb @@ -28,7 +28,7 @@ module Shared json['version'] = version File.write('package.json', JSON.pretty_generate(json)) git_add 'package.json' - git_commit message + git_commit message, true end end @@ -36,10 +36,6 @@ module Shared run_cmd "git add #{path}" end - def git_commit (msg) - run_cmd "git commit -m '#{msg}'" - end - def git_show_branches run_cmd "git branch" end