From c5ca59208eea712f584687257761fedd3541c173 Mon Sep 17 00:00:00 2001 From: Daniel Shuy Date: Thu, 29 Oct 2020 13:09:36 +0800 Subject: [PATCH] cli: fix lint errors in cli/commands/init.go (#5943) https://github.com/hasura/graphql-engine/pull/5943 --- cli/commands/init.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/commands/init.go b/cli/commands/init.go index 0b7e0848733..ada6dc7bef1 100644 --- a/cli/commands/init.go +++ b/cli/commands/init.go @@ -131,9 +131,9 @@ func (o *InitOptions) Run() error { return errors.Errorf("current working directory is already a hasura project directory") } o.EC.ExecutionDirectory = cwdir - infoMsg = fmt.Sprintf(`hasura project initialised. execute the following command to continue: + infoMsg = `hasura project initialised. execute the following command to continue: hasura console -`) +` } else { // create execution directory err := o.createExecutionDirectory()