cli: fix lint errors in cli/commands/init.go (#5943)

https://github.com/hasura/graphql-engine/pull/5943
This commit is contained in:
Daniel Shuy 2020-10-29 13:09:36 +08:00 committed by GitHub
parent 8b577adfae
commit c5ca59208e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()