Skip to content

Commit a9f385a

Browse files
committed
cmd: destroy: fix capitalized error msgs
1 parent f7d0b84 commit a9f385a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/openshift-install/destroy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ func runDestroyCmd(directory string, reportQuota bool) error {
6565
timer.StartTimer(timer.TotalTimeElapsed)
6666
destroyer, err := destroy.New(logrus.StandardLogger(), directory)
6767
if err != nil {
68-
return fmt.Errorf("Failed while preparing to destroy cluster: %w", err)
68+
return fmt.Errorf("failed while preparing to destroy cluster: %w", err)
6969
}
7070
quota, err := destroyer.Run()
7171
if err != nil {
72-
return fmt.Errorf("Failed to destroy cluster: %w", err)
72+
return fmt.Errorf("failed to destroy cluster: %w", err)
7373
}
7474

7575
if reportQuota {

0 commit comments

Comments
 (0)