wip: add commit-info command

This commit is contained in:
2021-04-26 00:23:14 +01:00
parent 9c977a75b5
commit 8d165b627b
10 changed files with 178 additions and 54 deletions

View File

@@ -5,6 +5,10 @@ require 'net/http'
module Common
private
def self.included(base)
base.extend(self)
end
def run_cmd(*args)
info "executing: #{args.join(' ')}"
system(*args) || err("Exit code: #{$CHILD_STATUS.exitstatus}")