From 8288bef5677b8d17b31c5cbc853da61e28cf52ae Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Wed, 14 Apr 2021 11:09:47 -0500 Subject: [PATCH] Add required argument to output option (#287) --- src/send.program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/send.program.ts b/src/send.program.ts index d482b6ccbd..8edb1f34c9 100644 --- a/src/send.program.ts +++ b/src/send.program.ts @@ -82,7 +82,7 @@ export class SendProgram extends Program { .option('--passwordenv ', 'Environment variable storing the Send\'s password') .option('--passwordfile ', 'Path to a file containing the Send\s password as its first line') .option('--obj', 'Return the Send\'s json object rather than the Send\'s content') - .option('--output', 'Specify a file path to save a File-type Send to') + .option('--output ', 'Specify a file path to save a File-type Send to') .on('--help', () => { writeLn(''); writeLn('If a password is required, the provided password is used or the user is prompted.');