From 2c7aacd105f622a31d35d5a6320f29f1fbbd775a Mon Sep 17 00:00:00 2001 From: Zack Brady Date: Mon, 30 Sep 2024 18:06:10 -0400 Subject: [PATCH] fixed typo in hauler store save (#331) * fixed typo in hauler store save * update internal/flags/save.go Co-authored-by: Jacob Blain Christen Signed-off-by: Zack Brady --------- Signed-off-by: Zack Brady Co-authored-by: Jacob Blain Christen --- internal/flags/save.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/flags/save.go b/internal/flags/save.go index 801cfe5..fa9a63d 100644 --- a/internal/flags/save.go +++ b/internal/flags/save.go @@ -12,5 +12,5 @@ func (o *SaveOpts) AddFlags(cmd *cobra.Command) { f := cmd.Flags() f.StringVarP(&o.FileName, "filename", "f", "haul.tar.zst", "(Optional) Specify the name of outputted archive") - f.StringVarP(&o.Platform, "platform", "p", "", "(Optional) Specifiy the platform of the images for the outputted archive... i.e. linux/amd64 (defaults to all)") + f.StringVarP(&o.Platform, "platform", "p", "", "(Optional) Specify the platform for runtime imports... i.e. linux/amd64 (unspecified implies all)") }