Skip to content

Commit

Permalink
🐛 allow make providers/config to run with failing providers
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 committed Sep 21, 2023
1 parent 8e36364 commit 702e9e1
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 702e9e1

Please sign in to comment.