Skip to content

Commit

Permalink
Fix SPACK-67: 'spack help stage' was broken.
Browse files Browse the repository at this point in the history
- remove spurious mutually exclusive group from subparser.
  • Loading branch information
tgamblin committed May 10, 2015
1 parent 8e87b21 commit 25af647
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/spack/spack/cmd/stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand All @@ -52,4 +51,3 @@ def stage(parser, args):
for spec in specs:
package = spack.db.get(spec)
package.do_stage()

0 comments on commit 25af647

Please sign in to comment.