From 8e0354be69884144394c6f497c7bb668f198ad4c Mon Sep 17 00:00:00 2001 From: Robert Kiel Date: Wed, 15 Nov 2017 14:11:38 -0500 Subject: [PATCH] Update runnable.rb --- lib/shared/runnable.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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