func buildsList(argv []string) error { usage := ` Lists build history for an application. Usage: deis builds:list [options] Options: -a --app=<app> the uniquely identifiable name for the application. -l --limit=<num> the maximum number of results to display, defaults to config setting ` args, err := docopt.Parse(usage, argv, true, "", false, true) if err != nil { return err } results, err := responseLimit(safeGetValue(args, "--limit")) if err != nil { return err } return cmd.BuildsList(safeGetValue(args, "--app"), results) }
func buildsList(argv []string) error { usage := ` Lists build history for an application. Usage: deis builds:list [options] Options: -a --app=<app> the uniquely identifiable name for the application. ` args, err := docopt.Parse(usage, argv, true, "", false, true) if err != nil { return err } return cmd.BuildsList(safeGetValue(args, "--app")) }