Skip to content

Commit

Permalink
Merge pull request #1790 from onflow/cf/remove-setup-dev-msg
Browse files Browse the repository at this point in the history
Remove message about flow dev in setup
  • Loading branch information
chasefleming authored Oct 18, 2024
2 parents fa0478c + 8896728 commit c63a3d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/super/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit c63a3d5

Please sign in to comment.