We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7d0b84 commit a9f385aCopy full SHA for a9f385a
cmd/openshift-install/destroy.go
@@ -65,11 +65,11 @@ func runDestroyCmd(directory string, reportQuota bool) error {
65
timer.StartTimer(timer.TotalTimeElapsed)
66
destroyer, err := destroy.New(logrus.StandardLogger(), directory)
67
if err != nil {
68
- return fmt.Errorf("Failed while preparing to destroy cluster: %w", err)
+ return fmt.Errorf("failed while preparing to destroy cluster: %w", err)
69
}
70
quota, err := destroyer.Run()
71
72
- return fmt.Errorf("Failed to destroy cluster: %w", err)
+ return fmt.Errorf("failed to destroy cluster: %w", err)
73
74
75
if reportQuota {
0 commit comments