summaryrefslogtreecommitdiff
path: root/lib/spack/spack/repo.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/spack/repo.py')
-rw-r--r--lib/spack/spack/repo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/repo.py b/lib/spack/spack/repo.py
index 8d31f2cf49..d9dddce6b6 100644
--- a/lib/spack/spack/repo.py
+++ b/lib/spack/spack/repo.py
@@ -1164,14 +1164,14 @@ def create_or_construct(path, namespace=None):
return Repo(path)
-def _path():
+def _path(repo_dirs=None):
"""Get the singleton RepoPath instance for Spack.
Create a RepoPath, add it to sys.meta_path, and return it.
TODO: consider not making this a singleton.
"""
- repo_dirs = spack.config.get('repos')
+ repo_dirs = repo_dirs or spack.config.get('repos')
if not repo_dirs:
raise NoRepoConfiguredError(
"Spack configuration contains no package repositories.")