From 0c0aacd549a15bc2bc76f5c24e2c75543c4e45e1 Mon Sep 17 00:00:00 2001 From: Andrey Slotin Date: Mon, 16 Oct 2023 18:07:49 +0200 Subject: [PATCH] Update cmd/init.go Co-authored-by: Ivan <2103732+codebien@users.noreply.github.com> --- cmd/init.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/init.go b/cmd/init.go index 070bdeae0a3f..b9c013eeb786 100644 --- a/cmd/init.go +++ b/cmd/init.go @@ -121,8 +121,7 @@ func (c *initCmd) run(cmd *cobra.Command, args []string) error { //nolint:revive return err } - printToStdout(c.gs, fmt.Sprintf("Initialized a new k6 test script in %s.\n", target)) - printToStdout(c.gs, fmt.Sprintf("You can now execute it by running `%s run %s`.\n", c.gs.BinaryName, target)) + printToStdout(c.gs, fmt.Sprintf("Initialized a new k6 test script in %s. You can now execute it by running `%s run %s`.\n", target, c.gs.BinaryName, target)) return nil }