Skip to content

Commit

Permalink
build: try to resolve all dependencies before failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Menet committed Aug 3, 2023
1 parent 056ae6d commit d4528fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func build(basedir, glob string, focus []string) (*element, []error) {
}

errs := sys.resolveDependencies(sys)
if err != nil {
if len(errs) > 0 {
return sys, errs
}

Expand Down

0 comments on commit d4528fd

Please sign in to comment.