diff --git a/release/dist/cli/cli.go b/release/dist/cli/cli.go index e0e196126..07d18d5fc 100644 --- a/release/dist/cli/cli.go +++ b/release/dist/cli/cli.go @@ -73,6 +73,9 @@ func CLI(getTargets func() ([]dist.Target, error)) *ffcli.Command { } func runList(ctx context.Context, filters []string, targets []dist.Target) error { + if len(filters) == 0 { + filters = []string{"all"} + } tgts, err := dist.FilterTargets(targets, filters) if err != nil { return err