Stop instructing users to run quickstart as root

Elevation is asked in specific steps automatically.
This commit is contained in:
Juan Cruz Viotti 2016-01-11 16:01:40 -04:00
parent 6d48fcfd6f
commit d859228aa9
4 changed files with 5 additions and 7 deletions

View File

@ -41,8 +41,6 @@ $ resin help
### Run the quickstart wizard ### Run the quickstart wizard
Run as `root` on UNIX based systems, and in an administrator command line prompt in Windows.
```sh ```sh
$ resin quickstart $ resin quickstart
``` ```

View File

@ -19,7 +19,7 @@ limitations under the License.
exports.wizard = { exports.wizard = {
signature: 'quickstart [name]', signature: 'quickstart [name]',
description: 'getting started with resin.io', description: 'getting started with resin.io',
help: 'Use this command to run a friendly wizard to get started with resin.io.\n\nThe wizard will guide you through:\n\n - Create an application.\n - Initialise an SDCard with the resin.io operating system.\n - Associate an existing project directory with your resin.io application.\n - Push your project to your devices.\n\nExamples:\n\n $ sudo resin quickstart\n $ sudo resin quickstart MyApp', help: 'Use this command to run a friendly wizard to get started with resin.io.\n\nThe wizard will guide you through:\n\n - Create an application.\n - Initialise an SDCard with the resin.io operating system.\n - Associate an existing project directory with your resin.io application.\n - Push your project to your devices.\n\nExamples:\n\n $ resin quickstart\n $ resin quickstart MyApp',
permission: 'user', permission: 'user',
primary: true, primary: true,
action: function(params, options, done) { action: function(params, options, done) {

View File

@ -721,6 +721,6 @@ The wizard will guide you through:
Examples: Examples:
$ sudo resin quickstart $ resin quickstart
$ sudo resin quickstart MyApp $ resin quickstart MyApp

View File

@ -29,8 +29,8 @@ exports.wizard =
Examples: Examples:
$ sudo resin quickstart $ resin quickstart
$ sudo resin quickstart MyApp $ resin quickstart MyApp
''' '''
permission: 'user' permission: 'user'
primary: true primary: true