diff options
-rw-r--r-- | buildstream/_pipeline.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildstream/_pipeline.py b/buildstream/_pipeline.py index 2d3194f6b..3b9fb0de9 100644 --- a/buildstream/_pipeline.py +++ b/buildstream/_pipeline.py @@ -235,6 +235,9 @@ class Pipeline(): # exceptions removed # def except_elements(self, targets, elements, except_targets): + if not except_targets: + return elements + targeted = list(self.dependencies(targets, Scope.ALL)) visited = [] |