Skip to content
This repository has been archived by the owner on Nov 14, 2019. It is now read-only.

Commit

Permalink
Merge pull request #90 from mesg-foundation/ux/capitalize-command-fla…
Browse files Browse the repository at this point in the history
…g-desc

capitalize all flag descriptions
  • Loading branch information
Nicolas Mahé authored Jul 5, 2019
2 parents cdf0580 + 1a1b4e5 commit d299809
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/commands/daemon/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ export default class Start extends Command {
default: version.engine
}),
'log-force-colors': flags.boolean({
description: 'log force colors',
description: 'Log force colors',
default: false
}),
'log-format': flags.enum({
description: 'log format',
description: 'Log format',
default: 'text',
options: ['text', 'json']
}),
'log-level': flags.enum({
description: 'log level',
description: 'Log level',
default: 'info',
options: ['debug', 'info', 'warn', 'error', 'fatal', 'panic']
}),
Expand Down
2 changes: 1 addition & 1 deletion src/commands/service/execute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default class ServiceExecute extends Command {
json: flags.string({char: 'j', description: 'Path to a JSON file containing the data required to run the task'}),
data: flags.string({
char: 'd',
description: 'data required to run the task',
description: 'Data required to run the task',
multiple: true,
helpValue: 'key=value'
}),
Expand Down
2 changes: 1 addition & 1 deletion src/commands/service/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default class ServiceStart extends Command {
static flags = {
...Command.flags,
env: flags.string({
description: 'set env defined in mesg.yml (configuration.env)',
description: 'Set env defined in mesg.yml (configuration.env)',
multiple: true,
helpValue: 'FOO=BAR'
})
Expand Down
2 changes: 1 addition & 1 deletion src/docker-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default abstract class extends Command {
static flags = {
...Command.flags,
name: flags.string({
description: 'name of the service running the engine',
description: 'Name of the service running the engine',
required: true,
default: 'engine'
}),
Expand Down

0 comments on commit d299809

Please sign in to comment.