Skip to content

Commit

Permalink
fix: use a valid short flag for blobs:get output
Browse files Browse the repository at this point in the history
`-o` is already used in the base command for `--offline`, so this was being quietly ignored

This can't be considered a breaking change as it has never worked. (I just tried it to be sure.)

See tj/commander.js#2055.
  • Loading branch information
serhalp committed Jan 21, 2025
1 parent 2573133 commit 9280c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/blobs/blobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const createBlobsCommand = (program: BaseCommand) => {
)
.argument('<store>', 'Name of the store')
.argument('<key>', 'Object key')
.option('-o, --output <path>', 'Defines the filesystem path where the blob data should be persisted')
.option('-O, --output <path>', 'Defines the filesystem path where the blob data should be persisted')
.alias('blob:get')
.hook('preAction', requiresSiteInfo)
.action(async (storeName: string, key: string, options: OptionValues, command: BaseCommand) => {
Expand Down

0 comments on commit 9280c55

Please sign in to comment.