diff options
author | Tristan van Berkom <tristan.vanberkom@codethink.co.uk> | 2020-06-10 19:24:26 +0900 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2020-06-10 16:21:43 +0000 |
commit | af4903d248d5762e1624dd06c9225ecc8ff34348 (patch) | |
tree | dc79b2023bcf09fd64831d1b57e9b611dba5c203 | |
parent | e1ee661c69d6749354d84746e4b4df3ec3d48bbb (diff) | |
download | buildstream-af4903d248d5762e1624dd06c9225ecc8ff34348.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.py | 6 |
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 |