Update mini-con defaults

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
Daniel Weiße 2022-11-08 16:19:55 +01:00
parent b0379eb766
commit 497d75b0e3
No known key found for this signature in database
GPG key ID: 7DD3015F3DDE4B9C
4 changed files with 5 additions and 5 deletions

View file

@ -189,7 +189,7 @@ func prepareConfig(cmd *cobra.Command, fileHandler file.Handler) (*config.Config
}
// download image to current directory if it doesn't exist
const imagePath = "./constellation.qcow2"
const imagePath = "./constellation.raw"
if _, err := os.Stat(imagePath); err == nil {
cmd.Printf("Using existing image at %s\n\n", imagePath)
} else if errors.Is(err, os.ErrNotExist) {