错误地添加Golang Cobra包装套件



我的glide.yaml导入部分是

import:
  - package: github.com/spf13/cobra

我有

import (
   "github.com/spf13/cobra"
)

在我的代码中。

但是我遇到了错误

供应商/github.com/spf13/cobra/command.go:1092:c.lflags.sortflags undefined(类型 *pflag.flagset.flagset没有字段或方法sortflags(
供应商/github.com/spf13/cobra/command.go:1092:c.flags((。sortflags undefined(类型 *pflag.flagset,没有字段或方法sortflags(
供应商/github.com/spf13/cobra/command.go:1240:c.parentspflags.sortflags undefined(类型 *pflag.flagset。

Cobra Repo上的问题的伴侣说,如果PFLAG软件包是旧版本,但在我的情况下,没有单独安装该软件包。知道我做错了什么?预先感谢!

Glide Cache不更新为什么要安装旧版本的PFLAG软件包是有问题的。更多详细信息:https://github.com/spf13/cobra/issues/420

相关内容

  • 没有找到相关文章

最新更新