Skip to content

Commit 8f86eb1

Browse files
committed
fix: use a valid short flag for blobs:get output
`-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.
1 parent 4b9d6b8 commit 8f86eb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/blobs/blobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const createBlobsCommand = (program: BaseCommand) => {
3333
)
3434
.argument('<store>', 'Name of the store')
3535
.argument('<key>', 'Object key')
36-
.option('-o, --output <path>', 'Defines the filesystem path where the blob data should be persisted')
36+
.option('-O, --output <path>', 'Defines the filesystem path where the blob data should be persisted')
3737
.alias('blob:get')
3838
.hook('preAction', requiresSiteInfo)
3939
.action(async (storeName: string, key: string, options: OptionValues, command: BaseCommand) => {

0 commit comments

Comments
 (0)