diff options
author | Wouter Deconinck <wdconinc@jlab.org> | 2021-03-16 16:02:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 21:02:26 +0000 |
commit | c9ba95cc5c2e093b333ba2e016bdae5ad266631d (patch) | |
tree | 8202d9636a9e90c7d8bb57cc4ad1738e79692fd0 /lib | |
parent | 603331e669b901b3c7a190dcaa554c743b4db159 (diff) | |
download | spack-c9ba95cc5c2e093b333ba2e016bdae5ad266631d.tar.gz spack-c9ba95cc5c2e093b333ba2e016bdae5ad266631d.tar.bz2 spack-c9ba95cc5c2e093b333ba2e016bdae5ad266631d.tar.xz spack-c9ba95cc5c2e093b333ba2e016bdae5ad266631d.zip |
containerize: fix typo in documentation (#22331)
Before this fix, `spack containerize` complains that `centos/7` is invalid
(should have been `centos:7`)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/containers.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/docs/containers.rst b/lib/spack/docs/containers.rst index d06f538e99..e88b55a226 100644 --- a/lib/spack/docs/containers.rst +++ b/lib/spack/docs/containers.rst @@ -227,7 +227,7 @@ following ``spack.yaml``: container: images: - os: centos/7 + os: centos:7 spack: 0.15.4 uses ``spack/centos7:0.15.4`` and ``centos:7`` for the stages where the |