Skip to content

Commit 0f98851

Browse files
author
Chris Hunt
committed
Remove comma in list output
1 parent e06fe4e commit 0f98851

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ $ gh-auth add --users=chrishunt zachmargolis
4949
Adding 4 key(s) to '/Users/chris/.ssh/authorized_keys'
5050

5151
$ gh-auth list
52-
chrishunt, zachmargolis
52+
chrishunt zachmargolis
5353

5454
$ gh-auth remove --users=chrishunt
5555
Removing 2 key(s) from '/Users/chris/.ssh/authorized_keys'

lib/github/auth/cli.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def remove
5353
\x5> chrishunt, zachmargolis
5454
LONGDESC
5555
def list
56-
puts keys_file.github_users.join(', ')
56+
puts keys_file.github_users.join(' ')
5757
end
5858

5959
desc 'version', 'Show gh-auth version'

0 commit comments

Comments
 (0)