diff options
author | Amine <hilalyamine@gmail.com> | 2019-08-23 11:09:03 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-08-31 23:02:20 +0200 |
commit | 65d7ce7c05a458beb306984c6fd3629839872845 (patch) | |
tree | a90e6b96b635bfefb11f8c685cb626c9710f2ce4 /commands/bridge_configure.go | |
parent | 0381400bfda16f910ca87b0258ddda1c1732fbc7 (diff) | |
download | git-bug-65d7ce7c05a458beb306984c6fd3629839872845.tar.gz |
commands: enhance flag description
bridge/github: improve configuration logic
Co-Authored-By: Michael Muré <batolettre@gmail.com>
Diffstat (limited to 'commands/bridge_configure.go')
-rw-r--r-- | commands/bridge_configure.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bridge_configure.go b/commands/bridge_configure.go index 4cfe0ed5..95cff1a2 100644 --- a/commands/bridge_configure.go +++ b/commands/bridge_configure.go @@ -191,7 +191,7 @@ func init() { bridgeConfigureCmd.Flags().StringVarP(&bridgeParams.URL, "url", "u", "", "The URL of the target repository") bridgeConfigureCmd.Flags().StringVarP(&bridgeParams.Owner, "owner", "o", "", "The owner of the target repository") bridgeConfigureCmd.Flags().StringVarP(&bridgeParams.Token, "token", "T", "", "The authentication token for the API") - bridgeConfigureCmd.Flags().BoolVar(&tokenStdin, "token-stdin", false, "Expect to receive token from stdin and ignore token flag.") + bridgeConfigureCmd.Flags().BoolVar(&tokenStdin, "token-stdin", false, "Will read the token from stdin and ignore --token") bridgeConfigureCmd.Flags().StringVarP(&bridgeParams.Project, "project", "p", "", "The name of the target repository") bridgeConfigureCmd.Flags().SortFlags = false } |