File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,18 @@ def verify(self):
59
59
parser .add_argument ('source_dir' , help = 'Path of your directory of yaml '
60
60
'files to bundle. Either set this or '
61
61
'use the files argument for bundle data.' )
62
- parser .add_argument ('--ui_validate_io ' ,
62
+ parser .add_argument ('--ui-validate-io ' ,
63
63
help = 'Validate bundle for operatorhub.io UI. '
64
64
'To visually confirm that your operator '
65
65
'will be displayed correctly, please visit '
66
66
'https://operatorhub.io/preview and paste '
67
67
'your operator CSV.' ,
68
+ dest = 'ui_validate_io' ,
69
+ action = 'store_true' )
70
+ parser .add_argument (# DEPRECATED; BW compatibility
71
+ '--ui_validate_io' ,
72
+ dest = 'ui_validate_io' ,
73
+ help = argparse .SUPPRESS ,
68
74
action = 'store_true' )
69
75
parser .add_argument ('--validation-output' , dest = 'validation_output' ,
70
76
help = 'A file to write validation warnings and errors to'
You can’t perform that action at this time.
0 commit comments