summaryrefslogtreecommitdiff
path: root/lib/spack/spack/cmd/verify.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/spack/cmd/verify.py')
-rw-r--r--lib/spack/spack/cmd/verify.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/spack/spack/cmd/verify.py b/lib/spack/spack/cmd/verify.py
index 026e025d36..0043372995 100644
--- a/lib/spack/spack/cmd/verify.py
+++ b/lib/spack/spack/cmd/verify.py
@@ -10,7 +10,7 @@ import spack.environment as ev
import spack.store
import spack.verify
-description = "Check that all spack packages are on disk as installed"
+description = "check that all spack packages are on disk as installed"
section = "admin"
level = "long"
@@ -19,14 +19,14 @@ def setup_parser(subparser):
setup_parser.parser = subparser
subparser.add_argument(
- "-l", "--local", action="store_true", help="Verify only locally installed packages"
+ "-l", "--local", action="store_true", help="verify only locally installed packages"
)
subparser.add_argument(
- "-j", "--json", action="store_true", help="Ouptut json-formatted errors"
+ "-j", "--json", action="store_true", help="ouptut json-formatted errors"
)
- subparser.add_argument("-a", "--all", action="store_true", help="Verify all packages")
+ subparser.add_argument("-a", "--all", action="store_true", help="verify all packages")
subparser.add_argument(
- "specs_or_files", nargs=argparse.REMAINDER, help="Specs or files to verify"
+ "specs_or_files", nargs=argparse.REMAINDER, help="specs or files to verify"
)
type = subparser.add_mutually_exclusive_group()
@@ -37,7 +37,7 @@ def setup_parser(subparser):
const="specs",
dest="type",
default="specs",
- help="Treat entries as specs (default)",
+ help="treat entries as specs (default)",
)
type.add_argument(
"-f",
@@ -46,7 +46,7 @@ def setup_parser(subparser):
const="files",
dest="type",
default="specs",
- help="Treat entries as absolute filenames. Cannot be used with '-a'",
+ help="treat entries as absolute filenames\n\ncannot be used with '-a'",
)