This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch chandan/stack-disallow-sources in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 74a98f265fcf43ce36bf8c9af33bb23f31470ba1 Author: Chandan Singh <[email protected]> AuthorDate: Sun Jul 14 15:43:36 2019 +0100 elements/stack.py: Indicate that it does not run any commands --- src/buildstream/plugins/elements/stack.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/buildstream/plugins/elements/stack.py b/src/buildstream/plugins/elements/stack.py index 6b97e44..0521e96 100644 --- a/src/buildstream/plugins/elements/stack.py +++ b/src/buildstream/plugins/elements/stack.py @@ -36,6 +36,9 @@ class StackElement(Element): # This element ignores sources BST_FORBID_SOURCES = True + # This element does not run any commands + BST_RUN_COMMANDS = False + def configure(self, node): pass
