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

capitalize all flag descriptions #90

Merged
merged 1 commit into from
Jul 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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