Commit 86f7a19 1 parent 01fb950 commit 86f7a19 Copy full SHA for 86f7a19
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ Options:
110
110
--output-file <output-file> Output BOM filename, will write to stdout if no value provided.
111
111
--input-format <autodetect|csv|json|protobuf|spdxjson|xml> Specify input file format.
112
112
--output-format <autodetect|csv|json|protobuf|spdxjson|xml> Specify output file format.
113
- --output-version <v1_0|v1_1|v1_2|v1_3|v1_4> Specify output BOM specification version. (ignored for CSV and SPDX formats)
113
+ --output-version <v1_0|v1_1|v1_2|v1_3|v1_4|v1_5 > Specify output BOM specification version. (ignored for CSV and SPDX formats)
114
114
```
115
115
116
116
### Examples
@@ -263,7 +263,7 @@ Usage:
263
263
Options:
264
264
--input-file <input-file> Input BOM filename, will read from stdin if no value provided.
265
265
--input-format <autodetect|json|xml> Specify input file format.
266
- --input-version <v1_0|v1_1|v1_2|v1_3|v1_4> Specify input file specification version (defaults to v1.4 )
266
+ --input-version <v1_0|v1_1|v1_2|v1_3|v1_4|v1_5 > Specify input file specification version (defaults to v1.5 )
267
267
--fail-on-errors Fail on validation errors (return a non-zero exit code)
268
268
```
269
269
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public static void Configure(RootCommand rootCommand)
35
35
var subCommand = new System . CommandLine . Command ( "validate" , "Validate a BOM" ) ;
36
36
subCommand . Add ( new Option < string > ( "--input-file" , "Input BOM filename, will read from stdin if no value provided." ) ) ;
37
37
subCommand . Add ( new Option < ValidationBomFormat > ( "--input-format" , "Specify input file format." ) ) ;
38
- subCommand . Add ( new Option < SpecificationVersion ? > ( "--input-version" , "Specify input file specification version (defaults to v1.4 )" ) ) ;
38
+ subCommand . Add ( new Option < SpecificationVersion ? > ( "--input-version" , "Specify input file specification version (defaults to v1.5 )" ) ) ;
39
39
subCommand . Add ( new Option < bool > ( "--fail-on-errors" , "Fail on validation errors (return a non-zero exit code)" ) ) ;
40
40
subCommand . Handler = CommandHandler . Create < ValidateCommandOptions > ( Validate ) ;
41
41
rootCommand . Add ( subCommand ) ;
You can’t perform that action at this time.
0 commit comments