Skip to content

Instantly share code, notes, and snippets.

@sapk
Created May 2, 2017 02:52
Show Gist options
  • Save sapk/aceaf02d9d6814f0d9fecff17d31c04b to your computer and use it in GitHub Desktop.
Save sapk/aceaf02d9d6814f0d9fecff17d31c04b to your computer and use it in GitHub Desktop.
var readmeFile *git.Blob
for _, entry := range entries {
if entry.IsDir() {
continue
}
tp, ok := markup.ReadmeFileType(entry.Name())
if !ok {
continue
}
readmeFile = entry.Blob()
if tp != "" {
break
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment