summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd Gamblin <gamblin2@llnl.gov>2021-05-15 13:48:00 -0700
committerGitHub <noreply@github.com>2021-05-15 20:48:00 +0000
commit379a1fd23bf464717b93a09fde68cf6469c2cbe7 (patch)
treea6bfa25f9bb185a0151a55fb8f17b6917dbdf769 /lib
parent2202ce27fa03010630ab81ea5d8679503346cf7a (diff)
downloadspack-379a1fd23bf464717b93a09fde68cf6469c2cbe7.tar.gz
spack-379a1fd23bf464717b93a09fde68cf6469c2cbe7.tar.bz2
spack-379a1fd23bf464717b93a09fde68cf6469c2cbe7.tar.xz
spack-379a1fd23bf464717b93a09fde68cf6469c2cbe7.zip
some fixes for command help strings (#23658)
- [x] `analyze` isn't commonly used; move it to long help (`spack -H` vs `spack -h`). Give it its own section. - [x] make it clear from `spack -h` that `spack module` can generate module files - [x] shorten help for `spack style`
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/analyze.py6
-rw-r--r--lib/spack/spack/cmd/module.py2
-rw-r--r--lib/spack/spack/cmd/style.py5
3 files changed, 5 insertions, 8 deletions
diff --git a/lib/spack/spack/cmd/analyze.py b/lib/spack/spack/cmd/analyze.py
index 318fca1e4a..e32dbcd7b1 100644
--- a/lib/spack/spack/cmd/analyze.py
+++ b/lib/spack/spack/cmd/analyze.py
@@ -18,9 +18,9 @@ import spack.paths
import spack.report
-description = "analyze installed packages"
-section = "extensions"
-level = "short"
+description = "run analyzers on installed packages"
+section = "analysis"
+level = "long"
def setup_parser(subparser):
diff --git a/lib/spack/spack/cmd/module.py b/lib/spack/spack/cmd/module.py
index c05d31ac40..e0fd0ab44f 100644
--- a/lib/spack/spack/cmd/module.py
+++ b/lib/spack/spack/cmd/module.py
@@ -11,7 +11,7 @@ import llnl.util.tty as tty
import spack.cmd.modules.lmod
import spack.cmd.modules.tcl
-description = "manipulate module files"
+description = "generate/manage module files"
section = "user environment"
level = "short"
diff --git a/lib/spack/spack/cmd/style.py b/lib/spack/spack/cmd/style.py
index c35c07a8f2..899ba5b6d7 100644
--- a/lib/spack/spack/cmd/style.py
+++ b/lib/spack/spack/cmd/style.py
@@ -24,10 +24,7 @@ else:
from itertools import zip_longest # novm
-description = (
- "runs source code style checks on Spack. Requires flake8, mypy, black for "
- + "their respective checks"
-)
+description = "runs source code style checks on spack"
section = "developer"
level = "long"