Skip to content

Commit

Permalink
🐛 allow make providers/config to run with failing providers (#1837)
Browse files Browse the repository at this point in the history
makes development easier, since the rest of the wiring can still happen,
even if the provider is faulty

Signed-off-by: Dominik Richter <[email protected]>
  • Loading branch information
arlimus authored Sep 22, 2023
1 parent 2f1405b commit 0eae687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers-sdk/v1/util/configure/configure.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func buildProviders(providers []string) {
cmd := exec.Command("make", "providers/build/"+provider)
log.Debug().Str("provider", provider).Msg("build provider " + strconv.Itoa(i+1) + "/" + strconv.Itoa(len(providers)))
if err := cmd.Run(); err != nil {
log.Fatal().Err(err).Str("provider", provider).Msg("failed to build provider")
log.Error().Err(err).Str("provider", provider).Msg("failed to build provider")
}

// inefficient copy...
Expand Down

0 comments on commit 0eae687

Please sign in to comment.