mirror of https://github.com/docker/docs.git
Add missing --server option to verify.
Verify was making call to the server but didn't have a way to override the default value. Signed-off-by: Christophe Labouisse <christophe@labouisse.org>
This commit is contained in:
parent
ac05822d7d
commit
36594b360c
|
|
@ -107,6 +107,7 @@ func main() {
|
|||
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.")
|
||||
cmdTufLookup.Flags().StringVarP(&remoteTrustServer, "server", "s", defaultServerURL, "Remote trust server location")
|
||||
notaryCmd.AddCommand(cmdVerify)
|
||||
cmdVerify.Flags().StringVarP(&remoteTrustServer, "server", "s", defaultServerURL, "Remote trust server location")
|
||||
|
||||
notaryCmd.Execute()
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue