diff options
-rw-r--r-- | lib/spack/spack/cmd/stage.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/spack/spack/cmd/stage.py b/lib/spack/spack/cmd/stage.py index c8bc473c55..f3dc97be17 100644 --- a/lib/spack/spack/cmd/stage.py +++ b/lib/spack/spack/cmd/stage.py @@ -36,7 +36,6 @@ def setup_parser(subparser): '-n', '--no-checksum', action='store_true', dest='no_checksum', help="Do not check downloaded packages against checksum") - dir_parser = subparser.add_mutually_exclusive_group() subparser.add_argument( 'specs', nargs=argparse.REMAINDER, help="specs of packages to stage") @@ -52,4 +51,3 @@ def stage(parser, args): for spec in specs: package = spack.db.get(spec) package.do_stage() - |