Skip to content

Commit

Permalink
Merge pull request #1799 from onflow/cf/dev-dep-msg
Browse files Browse the repository at this point in the history
Add deprecation message for dev command
  • Loading branch information
chasefleming authored Nov 20, 2024
2 parents 659c356 + 876962b commit c73ef4e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions internal/super/dev.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ var devFlags = flagsDev{}

var DevCommand = &command.Command{
Cmd: &cobra.Command{
Use: "dev",
Short: "Build your Flow project",
Args: cobra.ExactArgs(0),
Example: "flow dev",
GroupID: "super",
Use: "dev",
Short: "Build your Flow project",
Args: cobra.ExactArgs(0),
Example: "flow dev",
GroupID: "super",
Deprecated: "The 'dev' command is deprecated and will be removed in a future release.",
},
Flags: &devFlags,
RunS: dev,
Expand Down

0 comments on commit c73ef4e

Please sign in to comment.