Skip to content

Commit

Permalink
fix: Dont hide av stack reorder command (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
twavv authored Sep 1, 2023
1 parent 24c8a50 commit 4a48c65
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions cmd/av/stack_reorder.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,10 @@ squashed, dropped, or moved within the stack.
`

var stackReorderCmd = &cobra.Command{
Use: "reorder",
Short: "reorder the stack",
Hidden: true,
Long: strings.TrimSpace(stackReorderDoc),
Args: cobra.NoArgs,
Use: "reorder",
Short: "reorder the stack",
Long: strings.TrimSpace(stackReorderDoc),
Args: cobra.NoArgs,
RunE: func(cmd *cobra.Command, args []string) error {
repo, err := getRepo()
if err != nil {
Expand Down

0 comments on commit 4a48c65

Please sign in to comment.