diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2020-01-06 00:09:00 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2020-01-06 00:20:19 -0800 |
commit | adffa45264b0079a79aded048fff35f7b2c3ede6 (patch) | |
tree | 99477d7e77cfd87b8ec0750866cfb43378e74a5b /lib | |
parent | c0672eb641846f5977c2a51e7b0c7d69b6a6f166 (diff) | |
download | spack-adffa45264b0079a79aded048fff35f7b2c3ede6.tar.gz spack-adffa45264b0079a79aded048fff35f7b2c3ede6.tar.bz2 spack-adffa45264b0079a79aded048fff35f7b2c3ede6.tar.xz spack-adffa45264b0079a79aded048fff35f7b2c3ede6.zip |
Reference `spack help --spec` in `spack spec --help`
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/spec.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/spec.py b/lib/spack/spack/cmd/spec.py index 12ebd08296..85fe5a1a9e 100644 --- a/lib/spack/spack/cmd/spec.py +++ b/lib/spack/spack/cmd/spec.py @@ -24,6 +24,10 @@ level = "short" def setup_parser(subparser): + subparser.epilog = """\ +for further documentation regarding the spec syntax, see: + spack help --spec +""" arguments.add_common_arguments( subparser, ['long', 'very_long', 'install_status']) subparser.add_argument( |