Skip to content

Commit

Permalink
Merge pull request #1672 from luhring/compile-errs
Browse files Browse the repository at this point in the history
  • Loading branch information
imjasonh authored Dec 1, 2024
2 parents a7083d9 + f0b189f commit 52689d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/build/compile.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (t *Test) Compile(ctx context.Context) error {
}

if err := test.CompilePipelines(ctx, sm, cfg.Test.Pipeline); err != nil {
return fmt.Errorf("compiling main pipelines: %w", err)
return fmt.Errorf("compiling main test pipelines: %w", err)
}

// Append anything the main package test needs.
Expand Down Expand Up @@ -172,7 +172,7 @@ func (b *Build) Compile(ctx context.Context) error {
}

if err := tc.CompilePipelines(ctx, sm, cfg.Test.Pipeline); err != nil {
return fmt.Errorf("compiling main pipelines: %w", err)
return fmt.Errorf("compiling main test pipelines: %w", err)
}

te := &b.Configuration.Test.Environment.Contents
Expand Down

0 comments on commit 52689d3

Please sign in to comment.