From 29d070e50c3756bae4251865a5feed6ec4cb95a1 Mon Sep 17 00:00:00 2001 From: Elizabeth Fischer Date: Fri, 17 Feb 2017 15:08:17 -0500 Subject: [PATCH] On uninstall, change shortcut flag for --dependents to -R, as per Spack convention. (-r = --dependencies, -R = --dependents). (#1917) --- lib/spack/spack/cmd/uninstall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spack/spack/cmd/uninstall.py b/lib/spack/spack/cmd/uninstall.py index fb9094f1b4f..5c33a4d648a 100644 --- a/lib/spack/spack/cmd/uninstall.py +++ b/lib/spack/spack/cmd/uninstall.py @@ -61,7 +61,7 @@ def setup_parser(subparser): "is both useful and dangerous, like rm -r") subparser.add_argument( - '-d', '--dependents', action='store_true', dest='dependents', + '-R', '--dependents', action='store_true', dest='dependents', help='also uninstall any packages that depend on the ones given ' 'via command line')