class Hatchet::BadRepoName

Public Class Methods

new(name, paths) click to toggle source
Calls superclass method
# File lib/hatchet/config.rb, line 9
def initialize(name, paths)
  msg = "could not find repo: '#{name}', check for spelling or " <<
        "duplicate repos. Run `$ hatchet list` to see all "   <<
        "repo options. Checked in #{paths.inspect}. \n\n" <<
        "  make sure repos are installed by running `$ hatchet install`"
  super(msg)
end