commands: only return the error (not the function help) when no identity is set

... to avoid misleading a user into thinking the usage was incorrect
This commit is contained in:
Michael Muré 2019-03-27 21:54:58 +01:00
parent ffc6cbdc45
commit bdf8523dc0
2 changed files with 4 additions and 2 deletions

View File

@ -88,7 +88,9 @@ func loadRepoEnsureUser(cmd *cobra.Command, args []string) error {
}
if !set {
return identity.ErrNoIdentitySet
// Print the error directly to not confuse a user
_, _ = fmt.Fprintln(os.Stderr, identity.ErrNoIdentitySet.Error())
os.Exit(-1)
}
return nil

View File

@ -25,7 +25,7 @@ const idLength = 40
const humanIdLength = 7
var ErrNonFastForwardMerge = errors.New("non fast-forward identity merge")
var ErrNoIdentitySet = errors.New("user identity first needs to be created using \"git bug user create\" or \"git bug user adopt\"")
var ErrNoIdentitySet = errors.New("to interact with bugs, an identity first needs to be created using \"git bug user create\" or \"git bug user adopt\"")
var ErrMultipleIdentitiesSet = errors.New("multiple user identities set")
var _ Interface = &Identity{}