Skip to content

Commit

Permalink
Fix amount of steps in anago
Browse files Browse the repository at this point in the history
This is more a cosmetic thing, but we forgot to update the amount of
steps when adding the package builds to anago.

Signed-off-by: Sascha Grunert <[email protected]>
  • Loading branch information
saschagrunert committed Dec 9, 2022
1 parent 9ce8fe3 commit 95f99fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/anago/anago.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ func (s *Stage) Run() error {
return fmt.Errorf("init log file: %w", err)
}

logger := log.NewStepLogger(11)
logger := log.NewStepLogger(12)
v := version.GetVersionInfo()
logger.Infof("Using krel version: %s", v.GitVersion)

Expand Down Expand Up @@ -396,7 +396,7 @@ func (r *Release) Run() error {
return fmt.Errorf("init log file: %w", err)
}

logger := log.NewStepLogger(11)
logger := log.NewStepLogger(12)
v := version.GetVersionInfo()
logger.Infof("Using krel version: %s", v.GitVersion)

Expand Down

0 comments on commit 95f99fb

Please sign in to comment.