[Notes] [Git][BuildStream/buildstream][master] 2 commits: _stream.py: fix _buildtree_pull_required logic



Title: GitLab

Tom Pollard pushed to branch master at BuildStream / buildstream

Commits:

1 changed file:

Changes:

  • buildstream/_stream.py
    ... ... @@ -1263,7 +1263,7 @@ class Stream():
    1263 1263
             required_list = []
    
    1264 1264
     
    
    1265 1265
             # If context is set to not pull buildtrees, or no fetch remotes, return empty list
    
    1266
    -        if not (self._context.pull_buildtrees or self._artifacts.has_fetch_remotes()):
    
    1266
    +        if not self._context.pull_buildtrees or not self._artifacts.has_fetch_remotes():
    
    1267 1267
                 return required_list
    
    1268 1268
     
    
    1269 1269
             for element in elements:
    



  • [Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]