Hide the intro quickstart message for now (until it gets renovated)

This commit is contained in:
Tim Perry 2017-07-18 16:42:45 +02:00
parent 64b6549fde
commit 1f0bec39d9
7 changed files with 6 additions and 16 deletions

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
### Changed
- Hide the intro quickstart message for now (until it gets renovated)
## [6.1.0] - 2017-06-30
### Fixed

View File

@ -91,7 +91,7 @@ exports.login = {
return login(options);
}).then(resin.auth.whoami).tap(function(username) {
console.info("Successfully logged in as: " + username);
return console.info("\nNow what?\n\n" + messages.gettingStarted + "\n\nFind out about more super powers by running:\n\n $ resin help\n\n" + messages.reachingOut);
return console.info("\nFind out about the available commands by running:\n\n $ resin help\n\n" + messages.reachingOut);
}).nodeify(done);
}
};

View File

@ -56,7 +56,6 @@ print = function(data) {
general = function(params, options, done) {
var commands, groupedCommands;
console.log('Usage: resin [COMMAND] [OPTIONS]\n');
console.log(messages.gettingStarted + "\n");
console.log(messages.reachingOut);
console.log('\nPrimary commands:\n');
commands = _.reject(capitano.state.commands, function(command) {

View File

@ -1,6 +1,4 @@
// Generated by CoffeeScript 1.12.6
exports.gettingStarted = 'Run the following command to get a device started with Resin.io\n\n $ resin quickstart';
exports.reachingOut = 'If you need help, or just want to say hi, don\'t hesitate in reaching out at:\n\n GitHub: https://github.com/resin-io/resin-cli/issues/new\n Forums: https://forums.resin.io';
exports.getHelp = 'If you need help, don\'t hesitate in contacting us at:\n\n GitHub: https://github.com/resin-io/resin-cli/issues/new\n Forums: https://forums.resin.io';

View File

@ -112,11 +112,7 @@ exports.login =
console.info("Successfully logged in as: #{username}")
console.info """
Now what?
#{messages.gettingStarted}
Find out about more super powers by running:
Find out about the available commands by running:
$ resin help

View File

@ -47,7 +47,6 @@ print = (data) ->
general = (params, options, done) ->
console.log('Usage: resin [COMMAND] [OPTIONS]\n')
console.log("#{messages.gettingStarted}\n")
console.log(messages.reachingOut)
console.log('\nPrimary commands:\n')

View File

@ -1,9 +1,3 @@
exports.gettingStarted = '''
Run the following command to get a device started with Resin.io
$ resin quickstart
'''
exports.reachingOut = '''
If you need help, or just want to say hi, don't hesitate in reaching out at: