Skip to content

Commit

Permalink
Revert "fix(server/cmd): rename hidden command"
Browse files Browse the repository at this point in the history
This reverts commit 1d4028a.
  • Loading branch information
aymanbagabas committed May 2, 2023
1 parent 07975dd commit b5992cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/cmd/hidden.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import "github.com/spf13/cobra"

func hiddenCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "hide REPOSITORY [TRUE|FALSE]",
Use: "hidden REPOSITORY [TRUE|FALSE]",
Short: "Hide or unhide a repository",
Aliases: []string{"hidden"},
Aliases: []string{"hide"},
Args: cobra.MinimumNArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
cfg, _ := fromContext(cmd)
Expand Down

0 comments on commit b5992cb

Please sign in to comment.