Skip to content

Commit

Permalink
chore: release v0.19.1 (#1947)
Browse files Browse the repository at this point in the history
fix(cmd): enable `scaffold flutter` cmd
  • Loading branch information
ilgooz authored Dec 18, 2021
2 parents df46287 + 6f00aa5 commit bb74281
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions starport/cmd/scaffold_flutter.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ import (
// NewScaffoldFlutter scaffolds a Flutter app for a chain.
func NewScaffoldFlutter() *cobra.Command {
c := &cobra.Command{
Hidden: true,
Use: "flutter",
Short: "A Flutter app for your chain",
Args: cobra.NoArgs,
RunE: scaffoldFlutterHandler,
Use: "flutter",
Short: "A Flutter app for your chain",
Args: cobra.NoArgs,
RunE: scaffoldFlutterHandler,
}

c.Flags().StringP(flagPath, "p", "./flutter", "path to scaffold content of the Flutter app")
Expand Down

0 comments on commit bb74281

Please sign in to comment.