in lib/licensee/projects/github_project.rb [32:41]
def files
return @files if defined? @files_from_tree
@files = dir_files
return @files unless @files.empty?
msg = "Could not load GitHub repo #{repo}, it may be private or deleted"
raise RepoNotFound, msg
end