diff options
Diffstat (limited to 'cli/actions.js')
-rw-r--r-- | cli/actions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/actions.js b/cli/actions.js index 6c4631c..b49ce59 100644 --- a/cli/actions.js +++ b/cli/actions.js | |||
@@ -66,7 +66,7 @@ function login(uri) { | |||
66 | 66 | ||
67 | superagent.get(server + API + '/').query({ username: username, password: password }).end(function (error, result) { | 67 | superagent.get(server + API + '/').query({ username: username, password: password }).end(function (error, result) { |
68 | if (error && error.code === 'ENOTFOUND') { | 68 | if (error && error.code === 'ENOTFOUND') { |
69 | console.log('No such server %s'.red, server.bold); | 69 | console.log('Server %s not found.'.red, server.bold); |
70 | process.exit(1); | 70 | process.exit(1); |
71 | } | 71 | } |
72 | if (error && error.code) { | 72 | if (error && error.code) { |