aboutsummaryrefslogtreecommitdiffstats
path: root/commands/user_list.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/user_list.go')
-rw-r--r--commands/user_list.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/commands/user_list.go b/commands/user_list.go
index 63717ce3..19be7628 100644
--- a/commands/user_list.go
+++ b/commands/user_list.go
@@ -9,10 +9,6 @@ import (
"github.com/spf13/cobra"
)
-var (
- userLsVerbose bool
-)
-
func runUserLs(cmd *cobra.Command, args []string) error {
backend, err := cache.NewRepoCache(repo)
if err != nil {
@@ -41,7 +37,4 @@ var userLsCmd = &cobra.Command{
func init() {
userCmd.AddCommand(userLsCmd)
userLsCmd.Flags().SortFlags = false
-
- userLsCmd.Flags().BoolVarP(&userLsVerbose, "verbose", "v", false,
- "Print extra information")
}