diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-12 15:14:37 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-12 21:32:09 +0200 |
commit | cda8114fda8d349bbaeefb42cc33ba715d41cf08 (patch) | |
tree | 45c96a8d07db89ff66519ae1e29b44648c1b5e37 /commands/new.go | |
parent | df67212fee5ae5381b13b2c7d6ce92e1bdb66e0f (diff) | |
download | git-bug-cda8114fda8d349bbaeefb42cc33ba715d41cf08.tar.gz |
store user info in the datastore
Diffstat (limited to 'commands/new.go')
-rw-r--r-- | commands/new.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/new.go b/commands/new.go index 0156477e..43bfd212 100644 --- a/commands/new.go +++ b/commands/new.go @@ -62,6 +62,8 @@ func newBug(repo repository.Repo, args []string) error { fmt.Println(bug) + author.Store(repo) + return nil } |