Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jul-sh committed Apr 17, 2024
1 parent c311ae6 commit 7692bc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/builders/docker/pkg/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -523,8 +523,8 @@ func saveToTempFile(verbose bool, readers ...io.Reader) ([]string, error) {
var wg sync.WaitGroup
// We need to make sure the fileChannel has enough buffere space to hold everything,
// since it won't be processed until the very end.
var fileChannel = make(chan tempFileResult, len(readers))
var printChannel = make(chan string)
fileChannel := make(chan tempFileResult, len(readers))
printChannel := make(chan string)

// Start a goroutine to process each Reader concurrently.
for _, reader := range readers {
Expand Down

0 comments on commit 7692bc0

Please sign in to comment.