From f13ce3540d50fb8b6cdf17c339787b7489661e6a Mon Sep 17 00:00:00 2001 From: Carson Woods Date: Tue, 16 Jul 2019 14:45:52 -0600 Subject: [PATCH] Add dest name of install_global to --global parameter --- lib/spack/spack/cmd/install.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/spack/spack/cmd/install.py b/lib/spack/spack/cmd/install.py index 993ebcdb08c..13e0689af3c 100644 --- a/lib/spack/spack/cmd/install.py +++ b/lib/spack/spack/cmd/install.py @@ -105,7 +105,8 @@ def setup_parser(subparser): help="install from file. Read specs to install from .yaml files") subparser.add_argument( '-g', '--global', action='store_true', default=False, - dest='install_global', help='install package to globally accesible location') + dest='install_global', + help='install package to globally accesible location') cd_group = subparser.add_mutually_exclusive_group() arguments.add_common_arguments(cd_group, ['clean', 'dirty'])