Browse Source

show: require args

pull/8/head
Daniel Martí 11 years ago
parent
commit
28d4d71b72
  1. 3
      cmd/fdroidcl/show.go

3
cmd/fdroidcl/show.go

@ -22,6 +22,9 @@ func init() {
}
func runShow(args []string) {
if len(args) < 1 {
log.Fatalf("No package names given")
}
apps := findApps(args)
for i, app := range apps {
if i > 0 {

Loading…
Cancel
Save