Browse Source

Leave some space between detailed printings of apps

pull/8/head
Daniel Martí 11 years ago
parent
commit
6b42194051
  1. 5
      cmd/fdroidcl/main.go

5
cmd/fdroidcl/main.go

@ -228,11 +228,14 @@ func main() {
}
found[app.ID] = app
}
for _, appID := range args {
for i, appID := range args {
app, _ := found[appID]
if app == nil {
log.Fatalf("Could not find app with ID '%s'", appID)
}
if i > 0 {
fmt.Printf("\n--\n\n")
}
printAppDetailed(*app)
}
case "devices":

Loading…
Cancel
Save