Skip to content

Commit 36a3ca9

Browse files
committed
install: Clarify print
There's no such thing as a "bootc disk image" I think...disk images are a generic concept and ours are not special *externally*. Let's clarify more that we're executing the container itself to write to the disk image.
1 parent de45894 commit 36a3ca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/bootc/bootc_disk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func (p *BootcDisk) getOrInstallImageToDisk(quiet bool) error {
154154

155155
// bootcInstallImageToDisk creates a disk image from a bootc container
156156
func (p *BootcDisk) bootcInstallImageToDisk(quiet bool) (err error) {
157-
println("Creating bootc disk image...")
157+
fmt.Printf("Executing `bootc install to-disk` from container image %s to create disk image\n", p.RepoTag)
158158
p.file, err = os.CreateTemp(p.Directory, "podman-bootc-tempdisk")
159159
if err != nil {
160160
return err

0 commit comments

Comments
 (0)