class Travis::CLI::Enable

def repository

def repository
  repo(slug)
rescue Travis::Client::NotFound
  unless skip_sync?
    say "repository not known to Travis CI (or no access?)"
    say "triggering sync: "
    sync
    say " done"
  end
  super
end