Skip to content

Commit

Permalink
don't bubble up extension errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wbreza committed Oct 17, 2024
1 parent 02b3d48 commit b252a17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cli/azd/cmd/extensions.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package cmd
import (
"context"
"fmt"
"log"
"os"
"path/filepath"

Expand Down Expand Up @@ -163,7 +164,7 @@ func (a *extensionAction) Run(ctx context.Context) (*actions.ActionResult, error

_, err = a.commandRunner.Run(ctx, runArgs)
if err != nil {
return nil, err
log.Printf("Failed to run extension %s: %v\n", extensionName, err)
}

return nil, nil
Expand Down

0 comments on commit b252a17

Please sign in to comment.