Remove unused rawOutput option in notary CLI.

Signed-off-by: Ying Li <ying.li@docker.com>
Signed-off-by: David Lawrence <david.lawrence@docker.com>

Signed-off-by: Ying Li <ying.li@docker.com> (github: endophage)
This commit is contained in:
Ying Li 2015-11-07 22:06:11 -08:00 committed by David Lawrence
parent e4e099ae00
commit 313ae80345
1 changed files with 0 additions and 3 deletions

View File

@ -21,7 +21,6 @@ const (
)
var (
rawOutput bool
verbose bool
trustDir string
configFile string
@ -107,13 +106,11 @@ func setupCommand(notaryCmd *cobra.Command) {
notaryCmd.AddCommand(cmdCert)
notaryCmd.AddCommand(cmdTufInit)
notaryCmd.AddCommand(cmdTufList)
cmdTufList.Flags().BoolVarP(&rawOutput, "raw", "", false, "Instructs notary list to output a nonpretty printed version of the targets list. Useful if you need to parse the list.")
notaryCmd.AddCommand(cmdTufAdd)
notaryCmd.AddCommand(cmdTufRemove)
notaryCmd.AddCommand(cmdTufStatus)
notaryCmd.AddCommand(cmdTufPublish)
notaryCmd.AddCommand(cmdTufLookup)
cmdTufLookup.Flags().BoolVarP(&rawOutput, "raw", "", false, "Instructs notary lookup to output a nonpretty printed version of the targets list. Useful if you need to parse the list.")
notaryCmd.AddCommand(cmdVerify)
}