From 615425954c3b0d9485a7027d4d451fdcdfdee84e Mon Sep 17 00:00:00 2001 From: Rajat Jindal Date: Thu, 12 Apr 2018 05:08:29 -0700 Subject: [PATCH] remove dot after the abs path (#672) --- cobra/cmd/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cobra/cmd/init.go b/cobra/cmd/init.go index 24413701..d65e6c8c 100644 --- a/cobra/cmd/init.go +++ b/cobra/cmd/init.go @@ -65,7 +65,7 @@ Init will not use an existing directory with contents.`, initializeProject(project) fmt.Fprintln(cmd.OutOrStdout(), `Your Cobra application is ready at -`+project.AbsPath()+`. +`+project.AbsPath()+` Give it a try by going there and running `+"`go run main.go`."+` Add commands to it by running `+"`cobra add [cmdname]`.")