Skip to content

Commit

Permalink
fix: summary for link (#980)
Browse files Browse the repository at this point in the history
  • Loading branch information
iowillhoit authored Oct 4, 2024
1 parent 851558f commit 0964834
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/plugins/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -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<void> {
const {args, flags} = await this.parse(PluginsLink)

Expand Down

0 comments on commit 0964834

Please sign in to comment.