Skip to content

Commit

Permalink
enhancement: make path required
Browse files Browse the repository at this point in the history
  • Loading branch information
innerdvations committed Aug 8, 2024
1 parent ddd9df5 commit 2e1ca56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/commands/plugin/init/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const command: StrapiCommand = ({ command: commanderCommand, ctx }) => {
commanderCommand
.command('init')
.description('Create a new plugin at a given path')
.argument('[path]', 'path to the plugin', './src/plugins/my-plugin')
.argument('path', 'path to the plugin')
.option('-d, --debug', 'Enable debugging mode with verbose logs', false)
.option('--silent', "Don't log anything", false)
.action((path, options) => {
Expand Down

0 comments on commit 2e1ca56

Please sign in to comment.