Update runnable.rb

This commit is contained in:
Robert Kiel
2017-11-15 14:11:38 -05:00
committed by GitHub
parent 246142d6fd
commit 8e0354be69

View File

@@ -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