Method: Lono::Configset::Generator#check_configset_exist!

Defined in:
lib/lono/configset/generator.rb

#check_configset_exist!Object



15
16
17
18
19
20
21
# File 'lib/lono/configset/generator.rb', line 15

def check_configset_exist!
  exist = !!Lono::Finder::Configset.find(@configset)
  unless exist
    puts "configset #{@configset.color(:green)} not found."
    exit 1
  end
end