From a526bcaf117c1dd83c9fdd0fd85464aba57bb064 Mon Sep 17 00:00:00 2001 From: Max Katz Date: Thu, 6 Apr 2017 13:44:43 -0700 Subject: [PATCH] Correct uninstall -d to uninstall -R in tutorial (#3740) -d was changed to -R as of PR #1917 --- lib/spack/docs/tutorial_sc16_spack_basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/spack/docs/tutorial_sc16_spack_basics.rst b/lib/spack/docs/tutorial_sc16_spack_basics.rst index ed58c7c5cf..8d9a8fbaea 100644 --- a/lib/spack/docs/tutorial_sc16_spack_basics.rst +++ b/lib/spack/docs/tutorial_sc16_spack_basics.rst @@ -1030,7 +1030,7 @@ We can uninstall packages by spec using the same syntax as install. We can uninstall packages by referring only to their hash. -We can use either ``-f`` (force) or ``-d`` (remove dependents as well) to +We can use either ``-f`` (force) or ``-R`` (remove dependents as well) to remove packages that are required by another installed package. .. code-block:: console @@ -1044,7 +1044,7 @@ remove packages that are required by another installed package. ==> Error: You can use spack uninstall --dependents to uninstall these dependencies as well - $ spack uninstall -d /4blb + $ spack uninstall -R /4blb ==> The following packages will be uninstalled : -- linux-redhat6-x86_64 / intel@16.0.3 --------------------------