Skip to content

Commit f0e4864

Browse files
authored
Merge pull request #311 from chmouel/do-not-exit-on-error
2 parents b6425b7 + 54f087a commit f0e4864

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pkg/cmd/bootstrap/bootstrap.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,7 @@ const successTmpl = `
5757
func install(ctx context.Context, run *params.Run, opts *bootstrapOpts) error {
5858
// nolint:forbidigo
5959
fmt.Println("🏃 Checking if Pipelines as Code is installed.")
60-
installed, err := checkNS(ctx, run, opts)
61-
if err != nil {
62-
return err
63-
}
60+
installed, _ := checkNS(ctx, run, opts)
6461
if installed {
6562
// nolint:forbidigo
6663
fmt.Println("👌 Pipelines as Code is already installed.")

0 commit comments

Comments
 (0)