Error message typo fix: Filed to Failed (#19611)

This commit is contained in:
Phil Renaud
2024-01-04 21:56:23 -05:00
committed by GitHub
parent 16876697a1
commit a5881963dd

View File

@@ -137,13 +137,13 @@ func (c *OperatorSnapshotSaveCommand) Run(args []string) int {
_, err = io.Copy(tmpFile, snapIn)
if err != nil {
c.Ui.Error(fmt.Sprintf("Filed to download snapshot file: %v", err))
c.Ui.Error(fmt.Sprintf("Failed to download snapshot file: %v", err))
return 1
}
err = os.Rename(tmpFile.Name(), filename)
if err != nil {
c.Ui.Error(fmt.Sprintf("Filed to finalize snapshot file: %v", err))
c.Ui.Error(fmt.Sprintf("Failed to finalize snapshot file: %v", err))
return 1
}