diff options
author | Michael Muré <michael.mure@consensys.net> | 2019-02-03 19:55:35 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-01 22:40:23 +0100 |
commit | 328a4e5abf3ec8ea41f89575fcfb83cf9f086c80 (patch) | |
tree | 29ce99a1cb244badd74acb61d2b251e56fd1643f /commands/id.go | |
parent | 56c6147eb6012252cf0b723b9eb6d1e841fc2f94 (diff) | |
download | git-bug-328a4e5abf3ec8ea41f89575fcfb83cf9f086c80.tar.gz |
identity: wip push/pull
Diffstat (limited to 'commands/id.go')
-rw-r--r-- | commands/id.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/id.go b/commands/id.go index 19d040ee..7eacd986 100644 --- a/commands/id.go +++ b/commands/id.go @@ -17,7 +17,7 @@ func runId(cmd *cobra.Command, args []string) error { var err error if len(args) == 1 { - id, err = identity.Read(repo, args[0]) + id, err = identity.ReadLocal(repo, args[0]) } else { id, err = identity.GetUserIdentity(repo) } |