From 3f881601fc41761873511b7e542206d0b66e0674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Sch=C3=BCller?= Date: Wed, 22 Jan 2025 17:41:17 +0100 Subject: [PATCH] cmd/image-builder/main: improve wording of `--blueprint` help When reading `--blueprint string`, I briefly thought it might also be possible to put a whole blueprint content as string into image-builder-cli argument. This wording should avoid misunderstandings. --- cmd/image-builder/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/image-builder/main.go b/cmd/image-builder/main.go index 14bb9fc..7274680 100644 --- a/cmd/image-builder/main.go +++ b/cmd/image-builder/main.go @@ -223,7 +223,7 @@ operating sytsems like centos and RHEL with easy customizations support.`, Args: cobra.ExactArgs(1), Hidden: true, } - manifestCmd.Flags().String("blueprint", "", `blueprint to customize an image`) + manifestCmd.Flags().String("blueprint", "", `filename of a blueprint to customize an image`) manifestCmd.Flags().String("arch", "", `build manifest for a different architecture`) manifestCmd.Flags().String("distro", "", `build manifest for a different distroname (e.g. centos-9)`) manifestCmd.Flags().String("ostree-ref", "", `OSTREE reference`)