Browse Source

Reorder funcs

pull/8/head
Daniel Martí 11 years ago
parent
commit
71caaf434e
  1. 26
      cmd/fdroidcl/show.go

26
cmd/fdroidcl/show.go

@ -21,6 +21,19 @@ func init() {
cmdShow.Run = runShow
}
func runShow(args []string) {
apps := findApps(args)
for i, app := range apps {
if app == nil {
log.Fatalf("Could not find app with ID '%s'", args[i])
}
if i > 0 {
fmt.Printf("\n--\n\n")
}
printAppDetailed(*app)
}
}
func findApps(ids []string) []*fdroidcl.App {
index := mustLoadIndex()
apps := make(map[string]*fdroidcl.App, len(index.Apps))
@ -36,19 +49,6 @@ func findApps(ids []string) []*fdroidcl.App {
return result
}
func runShow(args []string) {
apps := findApps(args)
for i, app := range apps {
if app == nil {
log.Fatalf("Could not find app with ID '%s'", args[i])
}
if i > 0 {
fmt.Printf("\n--\n\n")
}
printAppDetailed(*app)
}
}
func printAppDetailed(app fdroidcl.App) {
p := func(title string, format string, args ...interface{}) {
if format == "" {

Loading…
Cancel
Save