aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-13 21:56:00 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-13 21:56:00 +0300
commit25f9bc4ceaa95fa4a2d0830f8cc526cb619fff16 (patch)
treed3321a85c5c0df43022b246594f9f8817c0ac011
parentsetup.cfg: add lower Python bound (diff)
downloadcmake-common-25f9bc4ceaa95fa4a2d0830f8cc526cb619fff16.tar.gz
cmake-common-25f9bc4ceaa95fa4a2d0830f8cc526cb619fff16.zip
project.ci: hide the --hint parameter
-rw-r--r--project/ci/boost.py2
-rw-r--r--project/ci/cmake.py2
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',