Przeglądaj źródła

Remove unused flag from command help

Rich Infante 7 lat temu
rodzic
commit
723f0dbde6
2 zmienionych plików z 2 dodań i 3 usunięć
  1. 1 1
      package.json
  2. 1 2
      tools/index.js

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "ibackuptool",
-  "version": "2.0.2",
+  "version": "2.0.3",
   "description": "Read Messages and info from iOS Backups",
   "main": "tools/index.js",
   "scripts": {

+ 1 - 2
tools/index.js

@@ -22,7 +22,7 @@ var reportTypes = {
 }
 
 program
-    .version('2.0.2')
+    .version('2.0.3')
     .option('-l, --list', 'List Backups')
     .option(`-b, --backup <backup>`, 'Backup ID')
     .option('-r, --report <report_type>', 'Select a report type. see below for a full list.')
@@ -33,7 +33,6 @@ program
     .option(`-v, --verbose`, 'Verbose debugging output')
     .option(`-x, --no-color`, 'Disable colorized output')
     .option('-z, --dump', 'Dump a ton of raw JSON formatted data instead of formatted output')
-    .option(`--help-reports`, `Display supported report types.`)
 
 program.on('--help', function () {
   console.log('')