Skip to content

Commit

Permalink
Merge pull request #418 from civo/bug-duplli
Browse files Browse the repository at this point in the history
Fix bug for duplicate printing
  • Loading branch information
uzaxirr authored May 9, 2024
2 parents 302ba9f + dc1a7ed commit 5185798
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions utility/output_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ func (ow *OutputWriter) StartLine() {
func (ow *OutputWriter) finishExistingLine() {
if len(ow.TempValues) > 0 {
ow.Values = append(ow.Values, ow.TempValues)
ow.TempValues = nil
}
}

Expand Down

0 comments on commit 5185798

Please sign in to comment.