diff options
author | Alexander Jaust <alexander.jaust@ipvs.uni-stuttgart.de> | 2021-10-12 19:23:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 19:23:53 +0200 |
commit | 50a2316a1572c0ff6a2649e1fe34be589089bfda (patch) | |
tree | d81ffe6d4db3136f9bacdba891fd4b29de2e8d02 /lib | |
parent | 2edfccf61dd0cd858c8df525faaca73f2e185279 (diff) | |
download | spack-50a2316a1572c0ff6a2649e1fe34be589089bfda.tar.gz spack-50a2316a1572c0ff6a2649e1fe34be589089bfda.tar.bz2 spack-50a2316a1572c0ff6a2649e1fe34be589089bfda.tar.xz spack-50a2316a1572c0ff6a2649e1fe34be589089bfda.zip |
Add missing spack command in basic usage tutorial (#26646)
The `find` command was missing for the examples forcing colorized output. Without this (or another suitable) command, spack produces output that is not using any color. Thus, without the `find` command one does not see any difference between forced colorized and non-colorized output.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/basic_usage.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/docs/basic_usage.rst b/lib/spack/docs/basic_usage.rst index 38c4f42571..9f3dac94fb 100644 --- a/lib/spack/docs/basic_usage.rst +++ b/lib/spack/docs/basic_usage.rst @@ -31,13 +31,13 @@ colorized output with a flag .. code-block:: console - $ spack --color always | less -R + $ spack --color always find | less -R or an environment variable .. code-block:: console - $ SPACK_COLOR=always spack | less -R + $ SPACK_COLOR=always spack find | less -R -------------------------- Listing available packages |