Fix import/upload CLI options
authorChocobozzz <me@florianbigard.com>
Thu, 16 Apr 2020 14:20:19 +0000 (16:20 +0200)
committerChocobozzz <me@florianbigard.com>
Thu, 16 Apr 2020 14:20:56 +0000 (16:20 +0200)
server/tools/cli.ts

index ca05dab92cd37f92b800e10c2eda51ebcc054e95..d5416fc3870a8e24291881f1c8090a411deb10da 100644 (file)
@@ -119,9 +119,10 @@ function buildCommonVideoOptions (command: CommanderStatic) {
     .option('-d, --video-description <description>', 'Video description')
     .option('-P, --privacy <privacy_number>', 'Privacy')
     .option('-C, --channel-name <channel_name>', 'Channel name')
-    .option('-m, --comments-enabled', 'Enable comments')
+    .option('--no-comments-enabled', 'Disable video comments')
     .option('-s, --support <support>', 'Video support text')
-    .option('-w, --wait-transcoding', 'Wait transcoding before publishing the video')
+    .option('--no-wait-transcoding', 'Do not wait transcoding before publishing the video')
+    .option('--no-download-enabled', 'Disable video download')
     .option('-v, --verbose <verbose>', 'Verbosity, from 0/\'error\' to 4/\'debug\'', 'info')
 }