Skip to content

Commit

Permalink
Merge pull request #685 from jonjohnsonjr/skip-arch-log
Browse files Browse the repository at this point in the history
build: Omit finished logs for skipped archs
  • Loading branch information
imjasonh committed Mar 7, 2024
2 parents 17cf392 + 06af1ac commit bb9b364
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/cli/build.go
Expand Up @@ -428,6 +428,7 @@ func (t *task) build(ctx context.Context) error {
)
if errors.Is(err, build.ErrSkipThisArch) {
log.Warnf("Skipping arch %s", arch)
t.skipped = true
return nil
} else if err != nil {
return err
Expand Down

0 comments on commit bb9b364

Please sign in to comment.