From 5d1be8bbb1eb5fc45d2a28a568f813d8affc87c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Sat, 25 Jan 2025 19:07:54 +0100 Subject: [PATCH] cmd/image-builder: fix typos in cobra descs --- cmd/image-builder/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/image-builder/main.go b/cmd/image-builder/main.go index ab5357c..9362dfb 100644 --- a/cmd/image-builder/main.go +++ b/cmd/image-builder/main.go @@ -196,11 +196,11 @@ func run() error { image-type and blueprint. Image-builder builds operating system images for a range of predefined -operating sytsems like centos and RHEL with easy customizations support.`, +operating systems like Fedora, CentOS and RHEL with easy customizations support.`, SilenceErrors: true, } - rootCmd.PersistentFlags().String("datadir", "", `Override the default data direcotry for e.g. custom repositories/*.json data`) - rootCmd.PersistentFlags().String("output-dir", "", `Put output into the specified direcotry`) + rootCmd.PersistentFlags().String("datadir", "", `Override the default data directory for e.g. custom repositories/*.json data`) + rootCmd.PersistentFlags().String("output-dir", "", `Put output into the specified directory`) rootCmd.SetOut(osStdout) rootCmd.SetErr(osStderr)