fix(core): add description to dry-run parameter (#2919)

This commit is contained in:
Bram Borggreve 2020-04-27 07:26:56 -05:00 committed by GitHub
parent 09baaaa8ba
commit 5994a9d068
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -246,7 +246,11 @@ function printGenHelp(
...schema, ...schema,
properties: { properties: {
...schema.properties, ...schema.properties,
dryRun: `Runs through and reports activity without writing to disk.` dryRun: {
type: 'boolean',
default: false,
description: `Runs through and reports activity without writing to disk.`
}
} }
}, },
logger logger