diff options
Diffstat (limited to 'project')
-rw-r--r-- | project/ci/boost.py | 2 | ||||
-rw-r--r-- | project/ci/cmake.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/project/ci/boost.py b/project/ci/boost.py index b1bf8de..e246963 100644 --- a/project/ci/boost.py +++ b/project/ci/boost.py @@ -34,7 +34,7 @@ def _parse_args(argv=None): # real CI workflow. parser.add_argument('--hint', metavar='CI_NAME', choices=Dirs.all_ci_names(), - help='CI system to use') + help=argparse.SUPPRESS) parser.add_argument('b2_args', metavar='B2_ARG', nargs='*', default=[], diff --git a/project/ci/cmake.py b/project/ci/cmake.py index 1694a5e..1f3dab8 100644 --- a/project/ci/cmake.py +++ b/project/ci/cmake.py @@ -26,7 +26,7 @@ def _parse_args(argv=None): # real CI workflow. parser.add_argument('--hint', metavar='CI_NAME', choices=Dirs.all_ci_names(), - help='CI system to use') + help=argparse.SUPPRESS) parser.add_argument('--install', action='store_true', help='install the project') parser.add_argument('--boost', metavar='DIR', dest='boost_dir', |