Bugfix for mirror command
This commit is contained in:
parent
bb4cbd008d
commit
bf498991d3
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ def mirror_create(args):
|
||||||
">>> " + string, str(e))
|
">>> " + string, str(e))
|
||||||
|
|
||||||
if not args.specs:
|
if not args.specs:
|
||||||
args.specs = spack.db.all_package_names()
|
args.specs = [Spec(n) for n in spack.db.all_package_names()]
|
||||||
|
|
||||||
# Default name for directory is spack-mirror-<DATESTAMP>
|
# Default name for directory is spack-mirror-<DATESTAMP>
|
||||||
if not args.directory:
|
if not args.directory:
|
||||||
|
|
Loading…
Reference in a new issue