aboutsummaryrefslogtreecommitdiffstats
path: root/commands/user_list.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-02-24 18:49:12 +0100
committerMichael Muré <batolettre@gmail.com>2019-03-01 22:52:53 +0100
commit46beb4b886761ff69abe2ce45c2498a4fafe50d9 (patch)
tree2722505d859d93a309e6fcee40af7812c74d1220 /commands/user_list.go
parent475b7b4c490bc3729772932f2d7bbcabb8f781a7 (diff)
downloadgit-bug-46beb4b886761ff69abe2ce45c2498a4fafe50d9.tar.gz
identity: another round of cleanups
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")
}