class Pfm::Command::Base

def build_exists?

def build_exists?
  return true if Dir.exist? build_base_dir
  # doesn't exist
  @errors.push("Build::#{@params.first} doesnt exist")
  false
end