Class: Autoproj::CLI::MainGit

Inherits:
Thor
  • Object
show all
Defined in:
lib/autoproj/cli/main_git.rb

Overview

CLI interface for autoproj-git

Instance Method Summary collapse

Instance Method Details

#cleanup(*packages) ⇒ Object



10
11
12
13
14
15
16
17
# File 'lib/autoproj/cli/main_git.rb', line 10

def cleanup(*packages)
    require 'autoproj/cli/git'
    Autoproj.report(silent: true) do
        cli = Git.new
        args = cli.validate_options(packages, options)
        cli.cleanup(*args)
    end
end