Skip to content

Commit

Permalink
Fix golang printf lint error (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
minniux authored and alexeyzhigaev committed Dec 16, 2024
1 parent 5dbd8e7 commit 558dc1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func BuildDockerImage(ctx context.Context, dockerfile string, tags []string, pus
return err
}
if dockerLogLine.Stream != "" {
fmt.Printf("%s", dockerLogLine.Stream)
fmt.Print(dockerLogLine.Stream)
}
if dockerLogLine.Aux != nil {
fmt.Printf("Image ID: %s\n", dockerLogLine.Aux.ID)
Expand Down

0 comments on commit 558dc1d

Please sign in to comment.