diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2023-08-17 11:57:48 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2023-08-30 12:42:31 -0700 |
commit | a3ecd7efed6d667cec3ac861e854a92d759b4390 (patch) | |
tree | 1e4bf5d9e252347bb5c3039e96fe0b04be3a3d39 /lib | |
parent | ae5511afd6f3af533122e6e7c7a0923f0837fb8f (diff) | |
download | spack-a3ecd7efed6d667cec3ac861e854a92d759b4390.tar.gz spack-a3ecd7efed6d667cec3ac861e854a92d759b4390.tar.bz2 spack-a3ecd7efed6d667cec3ac861e854a92d759b4390.tar.xz spack-a3ecd7efed6d667cec3ac861e854a92d759b4390.zip |
Add `concretise` and `containerise` aliases for our UK users
From a user:
> Aargh.
> ```
> ==> Error: concretise is not a recognized Spack command or extension command; check with `spack commands`.
> ```
To make things easier for our friends in the UK, this adds `concretise` and
`containerise` aliases for the `spack concretize` and `spack containerize` commands.
- [x] add aliases
- [x] update completions
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/main.py b/lib/spack/spack/main.py index 1d2909b49b..bbeaba253e 100644 --- a/lib/spack/spack/main.py +++ b/lib/spack/spack/main.py @@ -51,7 +51,7 @@ from spack.error import SpackError stat_names = pstats.Stats.sort_arg_dict_default #: top-level aliases for Spack commands -aliases = {"rm": "remove"} +aliases = {"concretise": "concretize", "containerise": "containerize", "rm": "remove"} #: help levels in order of detail (i.e., number of commands shown) levels = ["short", "long"] |