From 4b8c7310b52abd04352a695708e7ed0d2aee640c Mon Sep 17 00:00:00 2001 From: Gianluca Zuccarelli Date: Wed, 20 Mar 2024 11:57:32 +0000 Subject: [PATCH] main: fix small typo A local container image from the host is being used. --- bib/cmd/bootc-image-builder/image.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bib/cmd/bootc-image-builder/image.go b/bib/cmd/bootc-image-builder/image.go index 0c84f567a..74ef59da5 100644 --- a/bib/cmd/bootc-image-builder/image.go +++ b/bib/cmd/bootc-image-builder/image.go @@ -40,7 +40,7 @@ type ManifestConfig struct { // TLSVerify specifies whether HTTPS and a valid TLS certificate are required TLSVerify bool - // Use a local container from the host rather than a repository + // Use a local container image from the host storage rather than a repository Local bool }