diff options
author | Chocobozzz <me@florianbigard.com> | 2020-04-16 16:20:19 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-04-16 16:20:56 +0200 |
commit | bd65cf02ff7fba8eced98a4fef0c45d9737ced80 (patch) | |
tree | b1e46117b15c856e8feb830a22e9cd8e4e75dace /server/tools | |
parent | 891bc2ffadd5dedae316fcc80856ff859e6f8336 (diff) | |
download | PeerTube-bd65cf02ff7fba8eced98a4fef0c45d9737ced80.tar.gz PeerTube-bd65cf02ff7fba8eced98a4fef0c45d9737ced80.tar.zst PeerTube-bd65cf02ff7fba8eced98a4fef0c45d9737ced80.zip |
Fix import/upload CLI options
Diffstat (limited to 'server/tools')
-rw-r--r-- | server/tools/cli.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/tools/cli.ts b/server/tools/cli.ts index ca05dab92..d5416fc38 100644 --- a/server/tools/cli.ts +++ b/server/tools/cli.ts | |||
@@ -119,9 +119,10 @@ function buildCommonVideoOptions (command: CommanderStatic) { | |||
119 | .option('-d, --video-description <description>', 'Video description') | 119 | .option('-d, --video-description <description>', 'Video description') |
120 | .option('-P, --privacy <privacy_number>', 'Privacy') | 120 | .option('-P, --privacy <privacy_number>', 'Privacy') |
121 | .option('-C, --channel-name <channel_name>', 'Channel name') | 121 | .option('-C, --channel-name <channel_name>', 'Channel name') |
122 | .option('-m, --comments-enabled', 'Enable comments') | 122 | .option('--no-comments-enabled', 'Disable video comments') |
123 | .option('-s, --support <support>', 'Video support text') | 123 | .option('-s, --support <support>', 'Video support text') |
124 | .option('-w, --wait-transcoding', 'Wait transcoding before publishing the video') | 124 | .option('--no-wait-transcoding', 'Do not wait transcoding before publishing the video') |
125 | .option('--no-download-enabled', 'Disable video download') | ||
125 | .option('-v, --verbose <verbose>', 'Verbosity, from 0/\'error\' to 4/\'debug\'', 'info') | 126 | .option('-v, --verbose <verbose>', 'Verbosity, from 0/\'error\' to 4/\'debug\'', 'info') |
126 | } | 127 | } |
127 | 128 | ||