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):
5959 parser .add_argument ('source_dir' , help = 'Path of your directory of yaml '
6060 'files to bundle. Either set this or '
6161 'use the files argument for bundle data.' )
62- parser .add_argument ('--ui_validate_io ' ,
62+ parser .add_argument ('--ui-validate-io ' ,
6363 help = 'Validate bundle for operatorhub.io UI. '
6464 'To visually confirm that your operator '
6565 'will be displayed correctly, please visit '
6666 'https://operatorhub.io/preview and paste '
6767 '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 ,
6874 action = 'store_true' )
6975 parser .add_argument ('--validation-output' , dest = 'validation_output' ,
7076 help = 'A file to write validation warnings and errors to'
You can’t perform that action at this time.
0 commit comments