summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan van Berkom <tristan.vanberkom@codethink.co.uk>2020-06-10 19:24:26 +0900
committerJürg Billeter <j@bitron.ch>2020-06-10 15:19:13 +0000
commit2e3f498ea91ced268431dd12fd39f59e3f78e6d9 (patch)
treeb8d83c4412cd8330f794b93b93d80817c1105993
parent6f335e26819413d6d429aa13404f5d30000aa449 (diff)
downloadbuildstream-2e3f498ea91ced268431dd12fd39f59e3f78e6d9.tar.gz
_context.py: Put the source_cache_specs close to the other cache specs
Instead of mixing it up with the directories
-rw-r--r--src/buildstream/_context.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buildstream/_context.py b/src/buildstream/_context.py
index 19e0781c1..c0e92b98e 100644
--- a/src/buildstream/_context.py
+++ b/src/buildstream/_context.py
@@ -63,9 +63,6 @@ class Context:
# The directory where various sources are stored
self.sourcedir = None
- # specs for source cache remotes
- self.source_cache_specs = None
-
# The directory where build sandboxes will be created
self.builddir = None
@@ -85,6 +82,9 @@ class Context:
# Default root location for workspaces
self.workspacedir = None
+ # specs for source cache remotes
+ self.source_cache_specs = None
+
# The locations from which to push and pull prebuilt artifacts
self.artifact_cache_specs = None