diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2017-01-26 04:33:01 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-01-26 02:33:01 -0800 |
commit | 6158115ca8ca8604d69865b38099134c30aa4fc8 (patch) | |
tree | 05201b11a17da140e3fde22d68cd6264aba6e23d /bin | |
parent | c7a1328326054980bd8f8e78dfb5fe6c0a83819d (diff) | |
download | spack-6158115ca8ca8604d69865b38099134c30aa4fc8.tar.gz spack-6158115ca8ca8604d69865b38099134c30aa4fc8.tar.bz2 spack-6158115ca8ca8604d69865b38099134c30aa4fc8.tar.xz spack-6158115ca8ca8604d69865b38099134c30aa4fc8.zip |
Standardize argparse help messages (#2847)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/spack | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -102,19 +102,19 @@ spec expressions: [^DEPENDENCY [CONSTRAINTS] ...]""")) parser.add_argument('-d', '--debug', action='store_true', - help="Write out debug logs during compile") + help="write out debug logs during compile") parser.add_argument('-D', '--pdb', action='store_true', - help="Run spack under the pdb debugger") + help="run spack under the pdb debugger") parser.add_argument('-k', '--insecure', action='store_true', - help="Do not check ssl certificates when downloading.") + help="do not check ssl certificates when downloading") parser.add_argument('-m', '--mock', action='store_true', - help="Use mock packages instead of real ones.") + help="use mock packages instead of real ones") parser.add_argument('-p', '--profile', action='store_true', - help="Profile execution using cProfile.") + help="profile execution using cProfile") parser.add_argument('-v', '--verbose', action='store_true', - help="Print additional output during builds") + help="print additional output during builds") parser.add_argument('-s', '--stacktrace', action='store_true', - help="Add stacktrace information to all printed statements") + help="add stacktrace information to all printed statements") parser.add_argument('-V', '--version', action='version', version="%s" % spack.spack_version) |