diff --git a/src/commands/plugins/link.ts b/src/commands/plugins/link.ts index 956e84c0..5874633f 100644 --- a/src/commands/plugins/link.ts +++ b/src/commands/plugins/link.ts @@ -14,7 +14,6 @@ Installation of a linked plugin will override a user-installed or core plugin. e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello' command will override the user-installed or core plugin implementation. This is useful for development work. ` - static examples = ['<%= config.bin %> <%= command.id %> <%- config.pjson.oclif.examplePlugin || "myplugin" %> '] static flags = { @@ -27,6 +26,8 @@ e.g. If you have a user-installed or core plugin that has a 'hello' command, ins verbose: Flags.boolean({char: 'v'}), } + static summary = 'Links a plugin into the CLI for development.' + async run(): Promise { const {args, flags} = await this.parse(PluginsLink)