Skip to content

Commit

Permalink
handle full user list
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Nov 23, 2014
1 parent 16e4f76 commit 239b893
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/CLI.js
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ CLI.prototype.listRemoteUsers = function(options) {
if(users.length == 0) {
console.info('No remote users')
} else {
users.forEach(function(userName) {
Object.keys(users).forEach(function(userName) {
console.info(userName)
})
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "process-boss",
"description": "A node process manager that isn't spanners all the way down",
"version": "2.1.1",
"version": "2.1.2",
"prefer-global": true,
"homepage": "https://github.com/tableflip/boss",
"repository": {
Expand Down

0 comments on commit 239b893

Please sign in to comment.