Skip to content

Commit f597184

Browse files
author
Peter Amstutz
committed
Suppress command line help for --disable-validate to discourage people
from using it.
1 parent 2fbb605 commit f597184

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cwltool/argparser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ def arg_parser(): # type: () -> argparse.ArgumentParser
215215
help="Will be passed to `docker run` as the '--net' "
216216
"parameter. Implies '--enable-net'.")
217217
parser.add_argument("--disable-validate", dest="do_validate",
218-
action="store_false", default=True, help="Skip CWL document validation.")
218+
action="store_false", default=True,
219+
help=argparse.SUPPRESS)
219220

220221
exgroup = parser.add_mutually_exclusive_group()
221222
exgroup.add_argument("--enable-ga4gh-tool-registry", action="store_true", help="Enable resolution using GA4GH tool registry API",

0 commit comments

Comments
 (0)