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.
2 parents 76c2b2e + 9cfcb5a commit 91c840eCopy full SHA for 91c840e
cmd/embedded-cluster/install.go
@@ -578,13 +578,13 @@ var installCommand = &cli.Command{
578
return err // we want the user to see the error message without a prefix
579
}
580
581
- logrus.Debugf("materializing binaries")
582
- if err := materializeFiles(c); err != nil {
+ adminConsolePwd, err := askAdminConsolePassword(c)
+ if err != nil {
583
metrics.ReportApplyFinished(c, err)
584
return err
585
586
- adminConsolePwd, err := askAdminConsolePassword(c)
587
- if err != nil {
+ logrus.Debugf("materializing binaries")
+ if err := materializeFiles(c); err != nil {
588
589
590
0 commit comments