diff options
author | Michael Muré <batolettre@gmail.com> | 2019-02-23 13:01:46 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-01 22:40:28 +0100 |
commit | b8caddddc7aaf34b2da61c590fd1d9a0fae024fb (patch) | |
tree | 05871cd66dd4ae9a02f4221b6a8c235931e93074 /commands/user_create.go | |
parent | 719303226096c905e602cb620dfdfbcf8fe106ad (diff) | |
download | git-bug-b8caddddc7aaf34b2da61c590fd1d9a0fae024fb.tar.gz |
identity: some UX cleanup
Diffstat (limited to 'commands/user_create.go')
-rw-r--r-- | commands/user_create.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/user_create.go b/commands/user_create.go index 50acac3e..2d007600 100644 --- a/commands/user_create.go +++ b/commands/user_create.go @@ -2,6 +2,7 @@ package commands import ( "fmt" + "os" "github.com/MichaelMure/git-bug/cache" "github.com/MichaelMure/git-bug/input" @@ -57,7 +58,7 @@ func runUserCreate(cmd *cobra.Command, args []string) error { return err } - fmt.Println() + _, _ = fmt.Fprintln(os.Stderr) fmt.Println(id.Id()) return nil |