From ebf39a6a904f3ec055ef7372a1f1372389334d8f Mon Sep 17 00:00:00 2001 From: kobergj Date: Wed, 4 May 2022 14:44:37 +0200 Subject: [PATCH] fix the first contact typo (#3676) Signed-off-by: jkoberg --- ocis/pkg/command/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocis/pkg/command/init.go b/ocis/pkg/command/init.go index 4c697011cc..d278794079 100644 --- a/ocis/pkg/command/init.go +++ b/ocis/pkg/command/init.go @@ -50,7 +50,7 @@ func InitCommand(cfg *config.Config) *cli.Command { insecureFlag := c.String("insecure") insecure := false if insecureFlag == "ask" { - answer := strings.ToLower(stringPrompt("Do want to configure oCIS with certificate checking disabled?\n This is not recommended for public instances! [yes | no = default]")) + answer := strings.ToLower(stringPrompt("Do you want to configure oCIS with certificate checking disabled?\n This is not recommended for public instances! [yes | no = default]")) if answer == "yes" || answer == "y" { insecure = true }