From ce7b251b547957d123ca8ff95b7c210ffcd3b7bf Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Wed, 17 Aug 2022 19:43:02 +0200 Subject: [PATCH] platform: fix error message for invalid image format --- internal/platform/platform.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/platform/platform.go b/internal/platform/platform.go index 3de131eba..62dbf0f6b 100644 --- a/internal/platform/platform.go +++ b/internal/platform/platform.go @@ -47,7 +47,7 @@ func (f ImageFormat) String() string { case FORMAT_VHD: return "vhd" default: - panic("invalid architecture") + panic("invalid image format") } }