Skip to content
Snippets Groups Projects
Commit aae364b4 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

"spack extensions" shows total extension count.

parent c077f057
No related branches found
No related tags found
No related merge requests found
...@@ -75,7 +75,8 @@ def extensions(parser, args): ...@@ -75,7 +75,8 @@ def extensions(parser, args):
if not extensions: if not extensions:
tty.msg("%s has no extensions." % spec.cshort_spec) tty.msg("%s has no extensions." % spec.cshort_spec)
return return
tty.msg("%s extensions:" % spec.cshort_spec) tty.msg(spec.cshort_spec)
tty.msg("%d extensions:" % len(extensions))
colify(ext.name for ext in extensions) colify(ext.name for ext in extensions)
# List specs of installed extensions. # List specs of installed extensions.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment