class Protobox::Command::PassThrough

Public Class Methods

execute(args) click to toggle source
# File lib/protobox/command/passthrough.rb, line 4
def self.execute args
  #puts args.inspect

  vagrant = Protobox::Util::Platform.vagrant

  args.insert(0, vagrant)
  args.insert(1, 'protobox')

  system *args

  # Success, exit status 0
  0
end