diff --git a/internal/super/setup.go b/internal/super/setup.go index 59477b8b1..4e3530075 100644 --- a/internal/super/setup.go +++ b/internal/super/setup.go @@ -25,13 +25,14 @@ import ( "os" "path/filepath" + "github.com/onflow/flowkit/v2" + "github.com/spf13/afero" "github.com/onflow/flow-cli/internal/prompt" "github.com/spf13/cobra" - "github.com/onflow/flowkit/v2" "github.com/onflow/flowkit/v2/output" "github.com/onflow/flow-cli/internal/command" @@ -300,8 +301,7 @@ func (s *setupResult) String() string { out.WriteString("Start development by following these steps:\n") out.WriteString(fmt.Sprintf("1. '%s' to change to your new project,\n", output.Bold(fmt.Sprintf("cd %s", relDir)))) out.WriteString(fmt.Sprintf("2. '%s' or run Flowser to start the emulator,\n", output.Bold("flow emulator"))) - out.WriteString(fmt.Sprintf("3. '%s' to start developing.\n", output.Bold("flow dev"))) - out.WriteString(fmt.Sprintf("4. '%s' to test your project.\n\n", output.Bold("flow test"))) + out.WriteString(fmt.Sprintf("3. '%s' to test your project.\n\n", output.Bold("flow test"))) out.WriteString(fmt.Sprintf("You should also read README.md to learn more about the development process!\n")) return out.String()