Skip to content

Commit

Permalink
Include referenced libraries in search
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnosal committed Sep 23, 2019
1 parent d3a2a1c commit 3a87252
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cmd/commands/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import (

type searchCmd struct {
libraryPaths arrayFlags
allScenarios bool
printJson bool

logger *log.Logger
Expand Down Expand Up @@ -57,7 +56,7 @@ func (p *searchCmd) Execute(_ context.Context, f *flag.FlagSet, _ ...interface{}
return subcommands.ExitFailure
}

entries, err := p.manifer.ListScenarios(p.libraryPaths, p.allScenarios)
entries, err := p.manifer.ListScenarios(p.libraryPaths, true)

if err != nil {
p.logger.Printf("%v\n while looking up scenarios", err)
Expand Down

0 comments on commit 3a87252

Please sign in to comment.