Module: EacLauncher::Git::Base::Underlying

Included in:
EacLauncher::Git::Base
Defined in:
lib/eac_launcher/git/base/underlying.rb

Instance Method Summary collapse

Instance Method Details

#execute!(*args) ⇒ Object



5
6
7
8
# File 'lib/eac_launcher/git/base/underlying.rb', line 5

def execute!(*args)
  args, options = build_args(args)
  ::EacRubyUtils::Envs.local.command(*args).execute!(options)
end

#system!(*args) ⇒ Object



10
11
12
13
# File 'lib/eac_launcher/git/base/underlying.rb', line 10

def system!(*args)
  args, options = build_args(args)
  ::EacRubyUtils::Envs.local.command(*args).system!(options)
end