Skip to content

Commit

Permalink
fix image cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bermuell committed Jan 10, 2024
1 parent b758c2e commit a6e5820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func setupWorkSpace(revision string) (string, error) {
return "", fmt.Errorf("error creating temp directory %v", err)
}

fmt.Printf("Setting up worktree in '%s'", workSpace)
fmt.Printf("Setting up worktree in '%s'\n", workSpace)

cmd := exec.Command("git", "worktree", "add",
"--checkout", workSpace, revision)
Expand Down
1 change: 1 addition & 0 deletions tests/e2e/test_target.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ func (dc *DockerContainer) Build() error {
if err != nil {
return err
}
dc.images = append(dc.images, providerImageName)

// build combined image using provider/consumer versions from images built above
combinedImageName := fmt.Sprintf("cosmos-ics-combined:%s_%s",
Expand Down

0 comments on commit a6e5820

Please sign in to comment.